First public contribution.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef R_MMRCCLIENTIMPLEMENTATION_H
17 #define R_MMRCCLIENTIMPLEMENTATION_H
21 #include <a3f/a3fbase.h>
22 #include <e32msgqueue.h>
25 #include "mmrcclient.h"
26 #include "mmrcclientserver.h"
27 #include "mmrcclientsession.h"
28 #include "mmrcmsgqueuehandlerobserver.h"
30 class MMultimediaResourceControlObserver;
31 class CMMRCClientMsgQueueHandler;
33 NONSHARABLE_CLASS(CMMRCClientImplementation) : public CBase, public MMMRCMsgQueueHandlerObserver
36 static CMMRCClientImplementation* NewL(MMultimediaResourceControlObserver& aCallback);
37 ~CMMRCClientImplementation();
39 TUint64 LogOn(TProcessId aProcessId);
42 TInt SendResourceRequest(MLogicalChain* aLogicalChainLastCommited, MLogicalChain* aLogicalChainRequested, CAudioContext* aContext);
45 TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData);
46 TInt CancelRegisterAsClient(TUid aEventType);
47 TInt WillResumePlay();
49 //from MMMRCMsgQueueHandlerObserver
50 void HandleMessage(TMMRCQueueItem& aMessage);
55 CMMRCClientImplementation(MMultimediaResourceControlObserver& aCallback);
58 MMultimediaResourceControlObserver& iObserver;
59 RMMRCClientSession iMMRCClientSession;
60 RMsgQueue<TMMRCQueueItem> iMsgQueue;
61 CMMRCClientMsgQueueHandler* iMsgClientQueueHandler;
64 #endif /* R_MMRCCLIENTIMPLEMENTATION_H */