Clean-up Multiprocess service support
authorJihoon Chung <jihoon.chung@samsaung.com>
Sat, 10 Aug 2013 09:44:08 +0000 (18:44 +0900)
committerGerrit Code Review <gerrit@gerrit.vlan144.tizendev.org>
Fri, 16 Aug 2013 13:53:48 +0000 (13:53 +0000)
[Issue#] N/A
[Problem] N/A
[Cause] N/A
[Solution] Clean-up Multiprocess service support
[SCMRequest] N/A

Change-Id: I5e89b9304103236cc1ee59a3f2cf805a88c2b97d

CMakeLists.txt
src/Plugin/AppBoxPlugin/AppBoxRenderView.cpp

index 46646f7..46be59b 100755 (executable)
@@ -25,11 +25,6 @@ IF(NOT CMAKE_BUILD_TYPE)
     SET(CMAKE_BUILD_TYPE "Release")
 ENDIF(NOT CMAKE_BUILD_TYPE)
 
-OPTION(MULTIPROCESS_SERVICE_SUPPORT "Process per service" OFF)
-IF(MULTIPROCESS_SERVICE_SUPPORT)
-    ADD_DEFINITIONS("-DMULTIPROCESS_SERVICE_SUPPORT")
-ENDIF(MULTIPROCESS_SERVICE_SUPPORT)
-
 # Compiler flags
 SET(CMAKE_C_FLAGS_PROFILING    "-O0 -g -pg")
 SET(CMAKE_CXX_FLAGS_PROFILING  "-O0 -std=c++0x -g -pg")
index 3d48c5c..f609963 100755 (executable)
@@ -146,13 +146,8 @@ AppBoxRenderView::WrtCorePtr AppBoxRenderView::createWrtCore(
     LogD("enter");
     
     WrtCorePtr wrt;
-#ifdef MULTIPROCESS_SERVICE_SUPPORT
-    wrt = WRT::CoreModuleSingleton::
-                Instance().getRunnableWidgetObject(m_appId, DPL::Optional<unsigned>());
-#else
     wrt = WRT::CoreModuleSingleton::
                 Instance().getRunnableWidgetObject(m_appId);
-#endif
     // prepare webview
     if (startUrl.empty()) {
         LogD("no start url");