From d7ea8d5593d575f1dadfa77a363ca98d5e3787f9 Mon Sep 17 00:00:00 2001 From: Jihoon Chung Date: Sat, 10 Aug 2013 18:44:08 +0900 Subject: [PATCH] Clean-up Multiprocess service support [Issue#] N/A [Problem] N/A [Cause] N/A [Solution] Clean-up Multiprocess service support [SCMRequest] N/A Change-Id: I5e89b9304103236cc1ee59a3f2cf805a88c2b97d --- CMakeLists.txt | 5 ----- src/Plugin/AppBoxPlugin/AppBoxRenderView.cpp | 5 ----- 2 files changed, 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46646f7..46be59b 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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") diff --git a/src/Plugin/AppBoxPlugin/AppBoxRenderView.cpp b/src/Plugin/AppBoxPlugin/AppBoxRenderView.cpp index 3d48c5c..f609963 100755 --- a/src/Plugin/AppBoxPlugin/AppBoxRenderView.cpp +++ b/src/Plugin/AppBoxPlugin/AppBoxRenderView.cpp @@ -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()); -#else wrt = WRT::CoreModuleSingleton:: Instance().getRunnableWidgetObject(m_appId); -#endif // prepare webview if (startUrl.empty()) { LogD("no start url"); -- 2.7.4