uiservicetab/vimpstcmdprocess/src/cvimpstcmdfactory.cpp
branchRCL_3
changeset 14 9fdee5e1da30
parent 0 5e5d6b214f4f
--- a/uiservicetab/vimpstcmdprocess/src/cvimpstcmdfactory.cpp	Wed Mar 31 21:14:49 2010 +0300
+++ b/uiservicetab/vimpstcmdprocess/src/cvimpstcmdfactory.cpp	Wed Apr 14 15:46:18 2010 +0300
@@ -24,6 +24,8 @@
 #include "cvimpstcmdlogout.h"
 #include "cvimpstcmdcancellogin.h"
 
+#include "uiservicetabtracer.h"
+
 #include "mvimpstcmdobserver.h"
 #include "mvimpstengine.h"
 #include "tvimpstconsts.h"
@@ -63,7 +65,7 @@
 //
 void CVIMPSTCmdFactory::ConstructL()
     {
-    
+    TRACER_AUTO;
     TUint32 serviceId = iEngine.ServiceId();
     
     //Make sure we initialise the Storage view for this service
@@ -108,7 +110,7 @@
 //
 CVIMPSTCmdFactory::~CVIMPSTCmdFactory()
     {
-    
+    TRACER_AUTO;
     iEngine.UnIntializeStorage();
     iEngine.UnRegisterServiceSessionObserver(this);
     
@@ -128,7 +130,7 @@
 MVIMPSTCmd* CVIMPSTCmdFactory::CreateCommandForIdL(
         TImCommandId aCommandId,TAny* aData /*NULL*/) 
     {
-    
+    TRACER_AUTO;
     MVIMPSTCmd* commd = NULL;
 	
 	//Instantiate appropriate command    
@@ -255,6 +257,7 @@
 void CVIMPSTCmdFactory::HandleServiceEventL
 	    			( TVIMPSTEnums::TVIMPSTRegistrationState aState,TInt aServiceError )
 	{
+	TRACER_AUTO;
 	// need not to store update complete state
 	iArrayProcess->SetLoginStateL( aState );
 	for( TInt index( 0 ); index < iObservers.Count(); ++index )