remove unnecessary IPC
authorYoung Ik Cho <youngik.cho@samsung.com>
Wed, 20 Mar 2013 06:28:09 +0000 (15:28 +0900)
committerYoung Ik Cho <youngik.cho@samsung.com>
Wed, 20 Mar 2013 06:28:34 +0000 (15:28 +0900)
Change-Id: Ifdac824596b888d0b36c372120da2e65a6199abe
Signed-off-by: Young Ik Cho <youngik.cho@samsung.com>
src/app/FApp_AppControlImpl.cpp
src/app/FApp_MapDataControlImpl.cpp
src/app/FApp_SqlDataControlImpl.cpp

index 1a3a28a..13078df 100755 (executable)
@@ -38,7 +38,6 @@
 #include <FIo_DirectoryImpl.h>
 
 #include "FApp_AppControlImpl.h"
-#include "FApp_AppManagerProxy.h"
 #include "FApp_AppControlManager.h"
 #include "FApp_AppArg.h"
 #include "FApp_AppImpl.h"
@@ -274,15 +273,6 @@ _AppControlImpl::StartOsp(const IList* pDataList, IAppControlEventListener* pLis
                SysTryReturnResult(NID_APP, _processId >= 0, GetLastResult(), "Launching(%ls) is failed", _path.GetPointer());
        }
 
-       // registers to server
-       _IAppManager* pMgr = _AppManagerProxy::GetService();
-
-       // actually register, not launch
-       if (pMgr)
-       {
-               pMgr->LaunchApplication(_path, req);
-       }
-
        return r;
 }
 
@@ -320,15 +310,6 @@ _AppControlImpl::StartOsp(const String* pUriData, const String* pMimeType, const
                SysTryReturnResult(NID_APP, _processId >= 0, GetLastResult(), "Launching(%ls) is failed", _path.GetPointer());
        }
 
-       // registers to server
-       _IAppManager* pMgr = _AppManagerProxy::GetService();
-
-       // actually register, not launch
-       if (pMgr)
-       {
-               pMgr->LaunchApplication(_path, req);
-       }
-
        return r;
 }
 
index b34a680..1b86d02 100644 (file)
@@ -35,7 +35,6 @@
 #include <FBaseSysLog.h>
 
 #include "FApp_AppControlManager.h"
-#include "FApp_AppManagerProxy.h"
 #include "FApp_MapDataControlImpl.h"
 #include "FApp_AppArg.h"
 
index 98e6208..9063306 100644 (file)
@@ -41,7 +41,6 @@
 #include <FIo_DataControlResultSetEnumerator.h>
 
 #include "FApp_AppControlManager.h"
-#include "FApp_AppManagerProxy.h"
 #include "FApp_SqlDataControlImpl.h"
 #include "FApp_AppArg.h"