diff -r 000000000000 -r 40261b775718 mmlibs/mmfw/tsrc/mmfintegrationtest/vclnt/OpenFileByHandle1512.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmlibs/mmfw/tsrc/mmfintegrationtest/vclnt/OpenFileByHandle1512.h Tue Feb 02 01:56:55 2010 +0200 @@ -0,0 +1,57 @@ + +// Copyright (c) 2004-2009 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: +// Header file: Basic tests. +// +// + +/** + @file OpenFileByHandle1512.h +*/ + +#ifndef OPENFILEBYHANDLE1512_H__ +#define OPENFILEBYHANDLE1512_H__ + +#include "TSI_MMFVCLNT.h" + +/** + * Play Video file + * + * @class CTestMmfVclntOpenFile1512 + * + */ +class CTestMmfVclntOpenFile1512 : public CTestMmfVclntStep, public MVideoRecorderUtilityObserver + { +public: + static CTestMmfVclntOpenFile1512* NewL(const TDesC& aTestName, const TDesC& aSectName, const TDesC& aKeyName, const TBool aRec); + static CTestMmfVclntOpenFile1512* NewLC(const TDesC& aTestName, const TDesC& aSectName, const TDesC& aKeyName, const TBool aRec); + virtual TVerdict DoTestStepL(); + // MVideoRecorderUtilityObserver + virtual void MvruoOpenComplete(TInt aError); + virtual void MvruoRecordComplete(TInt aError); + virtual void MvruoPrepareComplete(TInt aError); + virtual void MvruoEvent(const TMMFEvent& aEvent); + +protected: + CTestMmfVclntOpenFile1512(const TDesC& aTestName, const TDesC& aSectName, const TDesC& aKeyName, const TBool aRec); + TVerdict PerformTestStepL(); + + TBuf iSectName; // Section name for retrieving filename + TBuf iKeyName; // Key name for retrieving filename + TInt iError; + const TBool iRec; // Does this test require recording of a video + TTimeIntervalMicroSeconds iDuration;// Stores duration of video + }; + +#endif // OPENFILEBYHANDLE1512_H__