From f93862cde8df5ec43d5c8bda0516abd485b35c14 Mon Sep 17 00:00:00 2001 From: "ayush.k123" Date: Fri, 17 Feb 2023 12:11:04 +0530 Subject: [PATCH] [M108 Migration] Enable NetworkServiceInProcess for Tizen Below change enable network service to run as in-process for Tizen Reference: https://review.tizen.org/gerrit/278829/ Change-Id: Iabafafcf1d05a13dde85e4777d02d6b151531976 Signed-off-by: Ayush Kumar --- content/public/common/content_features.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc index 12aa4a4..3e0efe3 100644 --- a/content/public/common/content_features.cc +++ b/content/public/common/content_features.cc @@ -709,7 +709,7 @@ BASE_FEATURE(kNavigationThreadingOptimizations, // If the network service is enabled, runs it in process. BASE_FEATURE(kNetworkServiceInProcess, "NetworkServiceInProcess2", -#if BUILDFLAG(IS_ANDROID) +#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_TIZEN) base::FEATURE_ENABLED_BY_DEFAULT #else base::FEATURE_DISABLED_BY_DEFAULT -- 2.7.4