First public contribution.
1 // Copyright (c) 2008-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.
14 // Client that calls the plugin that does the actual coverage tests
21 @internalComponent - Internal Symbian coverage test code,
26 const TUid KGraphicDrawerCoverageInterfaceId = {0x10285D5A};
27 const TUid KGraphicDrawerCoverageImplId = {0x10285D5B};
29 EXPORT_C CWsGdCoverage* CWsGdCoverage::NewL()
34 EXPORT_C CWsGdCoverage* CWsGdCoverage::NewL(TInt aScreenId)
36 CWsGdCoverage* self = new(ELeave) CWsGdCoverage;
37 CleanupStack::PushL(self);
39 data.Append((TUint8)aScreenId);
40 self->BaseConstructL(KGraphicDrawerCoverageInterfaceId, KGraphicDrawerCoverageImplId, data);
41 CleanupStack::Pop(self);
42 self->iIsReady = ETrue;
46 EXPORT_C CWsGdCoverage::~CWsGdCoverage()
51 void CWsGdCoverage::HandleMessage(const TDesC8& aData)
53 if (aData.Size()>1 && aData[0]==KGdCoverageInfoSig)
55 if (aData.Size() <= sizeof(TGdCoverageInfo))
57 Mem::Copy(iReq, aData.Ptr(), aData.Size());
63 void CWsGdCoverage::OnReplace()
67 EXPORT_C TInt CWsGdCoverage::RunTest(TInt aCode)
79 EXPORT_C TInt CWsGdCoverage::QueryPlugin(TGdCoverageInfo& aInfo)
82 cmd.Append(KGdCoverageCmdQuery);
91 EXPORT_C void CWsGdCoverage::SetCallBack(TCallBack aCallBack)
93 iCallBack = aCallBack;