Update contrib.
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 MMRCCLIENTSESSION_H__
17 #define MMRCCLIENTSESSION_H__
19 #include "mmrcclientserver.h"
23 #include <a3f/a3fbase.h>
24 #include "mmrcclientserver.h"
28 class MMultimediaResourceControlObserver;
29 class CMMRCClientSideServerRequestToAdaptationAO;
32 NONSHARABLE_CLASS(RMMRCClientSession) : public RSessionBase
36 RMMRCClientSession::~RMMRCClientSession();
39 TInt Open(MMultimediaResourceControlObserver& aCallback);
40 TUint64 LogOn(TProcessId aProcessId);
43 void InitializeServerL(RHandleBase& aMsgQueueHandle);
44 TInt SendResourceRequest(MLogicalChain* aCurrent, MLogicalChain* aDesired, CAudioContext* aContext);
45 void ResourceRequestResponse(MLogicalChain* aChainResponse, TMMRCServerToClientMessageResults aResult, TInt aError);
48 TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData);
49 TInt CancelRegisterAsClient(TUid aEventType);
50 TInt WillResumePlay();
54 //void SendRequestResourceDataL();
57 RThread iServerThread;
58 TRequestStatus *iCallingStatus;
61 MLogicalChain* iLogicalChainLastCommited;
62 MLogicalChain* iLogicalChainRequested;
63 CMMRCClientSideServerRequestToAdaptationAO* iMMRCClientSideServerRequestToAdaptationAO;
66 MMultimediaResourceControlObserver* iObserver;
68 TInt iCurrentRequestId;
71 #endif //__MMRCCLIENTSESSION_H__