From: surya.kumar7 Date: Tue, 13 Mar 2018 13:05:13 +0000 (+0530) Subject: Disallow multiple process creations X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e3cd82dd0584ec207526863313fe3777d2c375f;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Disallow multiple process creations When a request to a new window(in electron's context) comes, if the rule CHILD_PROCESS_SPAWN is true, electron forks the current process and creates the new window on another process. Disabling it will mean the new window will be created from and appended to the existing process. Change-Id: I907a2fb8a0cb6585e033737164a066379fadc5c5 Signed-off-by: surya.kumar7 --- diff --git a/wrt/src/default_value.js b/wrt/src/default_value.js index afcc5ab..3964f36 100644 --- a/wrt/src/default_value.js +++ b/wrt/src/default_value.js @@ -12,7 +12,7 @@ define({ PATH_HOSTED: 'static_hosted/web_window.html' }, RULE: { - CHILD_PROCESS_SPAWN: true, + CHILD_PROCESS_SPAWN: false, WEB_WINDOW_TAG: false }, LAUNCHER: {