From ec0414441e97a4e839327982c3470c11770df980 Mon Sep 17 00:00:00 2001 From: "gyuyoung.kim@samsung.com" Date: Sat, 4 Jan 2014 12:27:01 +0000 Subject: [PATCH] Enable navigator content utils by default NavigatorContentUtils feature was added without any status, because it was already shipped on some platforms. When applying a runtime flag to the feature, it is not enabled by default because it doesn't have any status. So, we need to enable the NavigatorContentUtils by default, because it was already shipped on some platforms. BUG=N/A Review URL: https://codereview.chromium.org/121643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243026 0039d316-1c4b-4281-b951-d872f2087c98 --- content/child/runtime_features.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc index 66fa73a25fc8..d77679acf6fc 100644 --- a/content/child/runtime_features.cc +++ b/content/child/runtime_features.cc @@ -42,6 +42,8 @@ static void SetRuntimeFeatureDefaultsForPlatform() { WebRuntimeFeatures::enableSharedWorker(false); // Android does not yet support NavigatorContentUtils. WebRuntimeFeatures::enableNavigatorContentUtils(false); +#else + WebRuntimeFeatures::enableNavigatorContentUtils(true); #endif // defined(OS_ANDROID) }