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

Unified Diff: chrome/renderer/render_thread.cc

Issue 343001: Move various runtime enabled experiments into a WebExperiments class.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « no previous file | webkit/api/public/WebKit.h » ('j') | webkit/api/src/WebMediaPlayerClientImpl.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_thread.cc
===================================================================
--- chrome/renderer/render_thread.cc (revision 30559)
+++ chrome/renderer/render_thread.cc (working copy)
@@ -50,6 +50,7 @@
#include "webkit/api/public/WebCache.h"
#include "webkit/api/public/WebColor.h"
#include "webkit/api/public/WebCrossOriginPreflightResultCache.h"
+#include "webkit/api/public/WebRuntimeFeatures.h"
#include "webkit/api/public/WebFontCache.h"
#include "webkit/api/public/WebColor.h"
#include "webkit/api/public/WebDatabase.h"
@@ -71,6 +72,7 @@
using WebKit::WebCache;
using WebKit::WebCrossOriginPreflightResultCache;
+using WebKit::WebRuntimeFeatures;
using WebKit::WebFontCache;
using WebKit::WebSecurityPolicy;
using WebKit::WebScriptController;
@@ -518,14 +520,14 @@
extensions_v8::PlaybackExtension::Get());
}
- if (RenderProcess::current()->initialized_media_library())
- WebKit::enableMediaPlayer();
+ WebRuntimeFeatures::enableMediaPlayer(
+ RenderProcess::current()->initialized_media_library());
- if (command_line.HasSwitch(switches::kEnableWebSockets))
- WebKit::enableWebSockets();
+ WebRuntimeFeatures::enableSockets(
+ command_line.HasSwitch(switches::kEnableWebSockets));
- if (command_line.HasSwitch(switches::kEnableDatabases))
- WebKit::enableDatabases();
+ WebRuntimeFeatures::enableDatabase(
+ command_line.HasSwitch(switches::kEnableDatabases));
}
void RenderThread::IdleHandler() {
« no previous file with comments | « no previous file | webkit/api/public/WebKit.h » ('j') | webkit/api/src/WebMediaPlayerClientImpl.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698