| Start/ | End/ | |||
| True | False | - | Line | Source |
| 1 | /* | |||
| 2 | * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). | |||
| 3 | * All rights reserved. | |||
| 4 | * This component and the accompanying materials are made available | |||
| 5 | * under the terms of "Eclipse Public License v1.0" | |||
| 6 | * which accompanies this distribution, and is available | |||
| 7 | * at the URL "http://www.eclipse.org/legal/epl-v10.html". | |||
| 8 | * | |||
| 9 | * Initial Contributors: | |||
| 10 | * Nokia Corporation - initial contribution. | |||
| 11 | * | |||
| 12 | * Contributors: | |||
| 13 | * | |||
| 14 | * Description: Implementation of COutOfDiskNotifyObserver class. | |||
| 15 | * | |||
| 16 | */ | |||
| 17 | ||||
| 18 | #include <e32debug.h> | |||
| 19 | #include <e32property.h> | |||
| 20 | ||||
| 21 | #include "MockShutdownEventObserver.h" | |||
| 22 | ||||
| Top | ||||
| 1 | 1 | 23 | TshutdownEventObserver::TshutdownEventObserver() | |
| 24 | { | |||
| 25 | ||||
| 26 | } | |||
| 27 | ||||
| Top | ||||
| 1 | 1 | 28 | TshutdownEventObserver::~TshutdownEventObserver() | |
| 29 | { | |||
| 30 | ||||
| 31 | } | |||
| 32 | ||||
| Top | ||||
| 0 | 0 | - | 33 | void TshutdownEventObserver::HandleShutdownEventL(MSaveObserver::TSaveType aAction,TBool aPowerOff, TPowerState aEvent) |
| 34 | { | |||
| 35 | ||||
| 36 | } | |||
| 37 | ||||
| Top | ||||
| 0 | 0 | - | 38 | CArrayFix<TThreadId>* TshutdownEventObserver::ClientArrayLC() |
| 39 | { | |||
| 40 | return (CArrayFix<TThreadId>*)NULL; | |||
| 41 | } | |||
| 42 | ||||
| Top | ||||
| 0 | 0 | - | 43 | TBool TshutdownEventObserver::IsClientHung(TThreadId aId) const |
| 44 | { | |||
| 45 | return ETrue; | |||
| 46 | } | |||
| 47 | ||||
| Top | ||||
| 0 | 0 | - | 48 | void TshutdownEventObserver::GetShutdownState(TBool& aPowerOff, TBool& aAllSessionsHavePendingRequest) const |
| 49 | { | |||
| 50 | ||||
| 51 | } | |||
| ***TER 33% (2/6) of SOURCE FILE mockshutdowneventobserver.cpp | ||||