Skip to content

Commit

Permalink
Enable navigator content utils by default
Browse files Browse the repository at this point in the history
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
  • Loading branch information
gyuyoung.kim@samsung.com committed Jan 4, 2014
1 parent dfcde2f commit ec04144
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions content/child/runtime_features.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit ec04144

Please sign in to comment.