browserplugins/browseraudiovideoplugin/inc/BavpVolumeObserver.h
branchRCL_3
changeset 65 8e6fa1719340
parent 0 84ad3b177aa3
equal deleted inserted replaced
64:6385c4c93049 65:8e6fa1719340
       
     1 /*
       
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Definition of the interface BavpVolumeObserver used to
       
    15 *                handle volume level change indications from the Browser
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef BAVPVOLUMEOBSERVER_H
       
    21 #define BAVPVOLUMEOBSERVER_H
       
    22 
       
    23 /**
       
    24 *  BavpVolumeObserver class for handling the volume change requests
       
    25 *  @lib npBrowserVideoPlugin.lib
       
    26 *  @since 3.2
       
    27 */
       
    28 
       
    29 class MBavpVolumeObserver
       
    30     {
       
    31     public:
       
    32     
       
    33         /**
       
    34         * UpdateVolume - Method called as part of the Central
       
    35         * repository server to set the volume value
       
    36 		* @since 3.2
       
    37         * @param TInt aVolume: Volume value to be set to
       
    38 		* @return void
       
    39         */
       
    40 		virtual void UpdateVolume( TInt aVolume ) = 0;
       
    41     };
       
    42 
       
    43 #endif // BAVPVOLUMEOBSERVER_H