From: Bakka Uday Kiran Date: Fri, 10 Feb 2023 10:41:51 +0000 (+0530) Subject: [M108 Migration] Disable site-per-process mode of Site Isolation by default X-Git-Tag: submit/tizen/20230227.160252~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e4d0fa2e29b4faf099a366f96b09ac72e8df2c6;p=platform%2Fframework%2Fweb%2Fchromium-efl.git [M108 Migration] Disable site-per-process mode of Site Isolation by default This patch disables site-per-process mode of Site Isolation by default on all Tizen profiles. It has been enabled on Chrome desktop (for all sites) and on Android (for sites users log into). On Android, it has been disabled if memory is less than 1077MB. More details here: https://www.chromium.org/developers/design-documents/site-isolation Reference: https://review.tizen.org/gerrit/c/280783 Change-Id: Icbb8e81c53e583634183ad34fa068a4d3e2d7c26 Signed-off-by: Bakka Uday Kiran --- diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc index f31156b..715d821 100644 --- a/content/public/browser/content_browser_client.cc +++ b/content/public/browser/content_browser_client.cc @@ -306,7 +306,7 @@ ContentBrowserClient::GetOriginsRequiringDedicatedProcess() { } bool ContentBrowserClient::ShouldEnableStrictSiteIsolation() { -#if BUILDFLAG(IS_ANDROID) +#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_TIZEN) return false; #else return true;