| Start/ | End/ | |||
| True | False | - | Line | Source |
| 1 | /* | |||
| 2 | * Copyright (c) 2007-2009 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: | |||
| 15 | * | |||
| 16 | */ | |||
| 17 | ||||
| 18 | ||||
| 19 | // SYSTEM INCLUDES | |||
| 20 | #include <uiklaf/private/lafshut.h> | |||
| 21 | #include <w32std.h> | |||
| 22 | ||||
| 23 | // USER INCLUDES | |||
| 24 | #include "outofdiskmonitor.h" | |||
| 25 | #include "OodTraces.h" | |||
| 26 | ||||
| 27 | // --------------------------------------------------------- | |||
| 28 | // | |||
| 29 | // --------------------------------------------------------- | |||
| 30 | // | |||
| Top | ||||
| 1 | 0 | 31 | EXPORT_C CLafShutdownManagerBase* LafShutdown::CreateShutdownManager( | |
| 32 | MShutdownEventObserver& aObserver) | |||
| 33 | { // static | |||
| 34 | TRACES("LafShutdown::CreateShutdownManager"); | |||
| 35 | CLafShutdownManagerBase* outOfDiskMonitor(NULL); | |||
| 36 | TRAP_IGNORE( outOfDiskMonitor = COutOfDiskMonitor::NewL(aObserver) ); | |||
| 37 | return outOfDiskMonitor; | |||
| 38 | } | |||
| 39 | ||||
| 40 | // --------------------------------------------------------- | |||
| 41 | // | |||
| 42 | // --------------------------------------------------------- | |||
| 43 | // | |||
| Top | ||||
| 1 | 0 | 44 | EXPORT_C MSaveObserver::TSaveType LafShutdown::SaveFromViewSwitch() | |
| 45 | { // static | |||
| 46 | TRACES("LafShutdown::SaveFromViewSwitch"); | |||
| 47 | return MSaveObserver::ESaveNone; | |||
| 48 | } | |||
| 49 | ||||
| 50 | // --------------------------------------------------------- | |||
| 51 | // | |||
| 52 | // --------------------------------------------------------- | |||
| 53 | // | |||
| Top | ||||
| 1 | 0 | 54 | EXPORT_C MSaveObserver::TSaveType LafShutdown::SaveFromAppSwitch() | |
| 55 | { // static | |||
| 56 | TRACES("LafShutdown::SaveFromAppSwitch"); | |||
| 57 | return MSaveObserver::ESaveNone; | |||
| 58 | } | |||
| 59 | ||||
| 60 | // End of file. | |||
| ***TER 100% (3/3) of SOURCE FILE lafshut.cpp | ||||