diff -r 000000000000 -r 15bf7259bb7c uiacceltk/hitchcock/goommonitor/src/goomrunpluginconfig.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uiacceltk/hitchcock/goommonitor/src/goomrunpluginconfig.cpp Tue Feb 02 07:56:43 2010 +0200 @@ -0,0 +1,53 @@ +/* +* Copyright (c) 2008 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: Configuration representation classes for Graphics Out of Memory Monitor +* +*/ + + +#include "goomrunpluginconfig.h" +#include "goomwindowgrouplist.h" +#include "goomtraces.h" + +CGOomRunPluginConfig* CGOomRunPluginConfig::NewL(TUint aPluginId, TGOomPluginType aPluginType) + { + FUNC_LOG; + + CGOomRunPluginConfig* self = new (ELeave) CGOomRunPluginConfig(aPluginId, aPluginType); + return self; + } + +TUint CGOomRunPluginConfig::CalculatePluginPriority(const CGOomWindowGroupList& aWindowGroupList) + { + FUNC_LOG; + + // Call the Priority function on the CActionConfig base class + // This function will check if any rules match the current system state and then adjust the priority if they do + // Rules may apply to system plugins or application plugins + return Priority(aWindowGroupList, aWindowGroupList.GetIndexFromAppId(iTargetAppId)); + } + + +CGOomRunPluginConfig::~CGOomRunPluginConfig() + { + FUNC_LOG; + } + + +CGOomRunPluginConfig::CGOomRunPluginConfig(TUint aPluginId, TGOomPluginType aPluginType) : CGOomActionConfig(aPluginId), iPluginId(aPluginId), iPluginType(aPluginType) + { + FUNC_LOG; + + iSyncMode = EContinueIgnoreMaxBatchSize; + }