Update contrib.
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.
16 #ifndef __DEBUGBAR_H__
17 #define __DEBUGBAR_H__
24 class CDebugBar : public CBase
27 static CDebugBar* NewL(CScreen * aScreen,const TRect& aScreenRect,TTimeIntervalMicroSeconds32 aRefreshInterval);
28 const TRect& Rect() const;
31 void RedrawDebugBar() const;
33 CDebugBar(CScreen * aScreen,const TRect& aScreenRect);
34 void ConstructL(TTimeIntervalMicroSeconds32 aRefreshInterval);
35 static TBool RedrawDebugBarCallback(TAny* aAny);
42 mutable TBuf<128> iBuf;
45 mutable TInt64 iLastTotal;
46 mutable TInt64 iLastIdle;
47 mutable TInt64 iLastDrawing;
48 mutable TInt64 iLastReclaimedIdleTime;