From: Cho Woong Suk Date: Mon, 11 Jul 2016 14:21:16 +0000 (+0900) Subject: skip ewk_shutdown() for wearable profile X-Git-Tag: accepted/tizen/common/20160907.154811~12^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7f8d82f3cc1df5360700ea5cf8968b9717ac32c;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git skip ewk_shutdown() for wearable profile Change-Id: I874812b206d143d71856f2ac7354a840e38dce93 --- diff --git a/runtime/browser/runtime_process.cc b/runtime/browser/runtime_process.cc index fd63a6c..0b0347f 100755 --- a/runtime/browser/runtime_process.cc +++ b/runtime/browser/runtime_process.cc @@ -130,7 +130,10 @@ int real_main(int argc, char* argv[]) { ret = runtime->Exec(argc, argv); runtime.reset(); } +#ifndef PROFILE_WEARABLE + LOGGER(DEBUG) << "ewk_shutdown() called"; ewk_shutdown(); +#endif exit(ret); return EXIT_SUCCESS;