Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: content/renderer/render_thread_impl.cc

Issue 10917269: Use a single flag for enabling experimental WebKit features. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/content_switches.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index cc93798f9cb8eca2edc27630f69721c544700366..adc7b1627d092718355f5bc84e23a48665b5b2a1 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -700,13 +700,13 @@ void RenderThreadImpl::EnsureWebKitInitialized() {
WebRuntimeFeatures::enableQuota(true);
WebRuntimeFeatures::enableShadowDOM(
- command_line.HasSwitch(switches::kEnableShadowDOM));
+ command_line.HasSwitch(switches::kEnableExperimentalWebKitFeatures));
WebRuntimeFeatures::enableStyleScoped(
- command_line.HasSwitch(switches::kEnableStyleScoped));
+ command_line.HasSwitch(switches::kEnableExperimentalWebKitFeatures));
WebRuntimeFeatures::enableCSSExclusions(
- command_line.HasSwitch(switches::kEnableCssExclusions));
+ command_line.HasSwitch(switches::kEnableExperimentalWebKitFeatures));
FOR_EACH_OBSERVER(RenderProcessObserver, observers_, WebKitInitialized());
« no previous file with comments | « content/public/common/content_switches.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698