profilesapplication/Profiles/ProfileApp/SettingsViewSrc/CProfileToneHandlerDrmEmpty.cpp
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:30:29 +0100
branchRCL_3
changeset 19 cd54903d48da
parent 0 ca436256272f
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  A helper interface to be used by S60 applications for
*                setting ringing and alert tones for different profiles.
*                Registers DRM protected tones as automated content
*                and removes old content from automated content list.
*                Shows a content activation query if necessary.
*
*/



// INCLUDE FILES
#include    "CProfileToneHandler.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CProfileToneHandler::DrmConstructL
// 2nd phase construct for DRM objects. Empty implementation.
// -----------------------------------------------------------------------------
//
void CProfileToneHandler::DrmConstructL()
    {
    }

// -----------------------------------------------------------------------------
// CProfileToneHandler::ReleaseDrm
// Destructor for DRM objects. Empty implementation.
// -----------------------------------------------------------------------------
//
void CProfileToneHandler::ReleaseDrm()
    {
    }

// -----------------------------------------------------------------------------
// CProfileToneHandler::CheckProtectedFileL
// Empty implementation.
// -----------------------------------------------------------------------------
//
TInt CProfileToneHandler::CheckProtectedFileL( const TDesC& /*aFileName*/ )
    {
    return KErrNone;
    }

// -----------------------------------------------------------------------------
// CProfileToneHandler::CanSetAutomated
// Empty implementation.
// -----------------------------------------------------------------------------
//
TBool CProfileToneHandler::CanSetAutomated( const TDesC& /*aFileName*/ )
    {
    return EFalse;
    }

// -----------------------------------------------------------------------------
// CProfileToneHandler::AskAutomated
// Empty implementation.
// -----------------------------------------------------------------------------
//
TInt CProfileToneHandler::AskAutomated( const TDesC& /*aFileName*/ )
    {
    return KErrNone;
    }

// -----------------------------------------------------------------------------
// CProfileToneHandler::SetAutomated
// Empty implementation.
// -----------------------------------------------------------------------------
//
TInt CProfileToneHandler::SetAutomated( TProfileTones /* aToneSetting */,
                                        const TDesC& /*aFileName*/ )
    {
    return KErrNone;
    }

// -----------------------------------------------------------------------------
// CProfileToneHandler::RemoveAutomated
// Empty implementation.
// -----------------------------------------------------------------------------
//
void CProfileToneHandler::RemoveAutomated( const TDesC& /*aFileName*/ )
    {
    }

// -----------------------------------------------------------------------------
// CProfileToneHandler::IsProtected
// Empty implementation.
// -----------------------------------------------------------------------------
//
TBool CProfileToneHandler::IsProtected( const TDesC& /*aFileName*/ ) const
    {
    return EFalse;
    }

//  End of File