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

Unified Diff: webkit/glue/webpreferences.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
Index: webkit/glue/webpreferences.cc
===================================================================
--- webkit/glue/webpreferences.cc (revision 30559)
+++ webkit/glue/webpreferences.cc (working copy)
@@ -5,6 +5,7 @@
#include "webkit/glue/webpreferences.h"
#include "base/string_util.h"
+#include "webkit/api/public/WebRuntimeFeatures.h"
#include "webkit/api/public/WebKit.h"
#include "webkit/api/public/WebSettings.h"
#include "webkit/api/public/WebString.h"
@@ -12,6 +13,7 @@
#include "webkit/api/public/WebView.h"
#include "webkit/glue/webkit_glue.h"
+using WebKit::WebRuntimeFeatures;
using WebKit::WebSettings;
using WebKit::WebString;
using WebKit::WebURL;
@@ -50,7 +52,8 @@
settings->setDownloadableBinaryFontsEnabled(remote_fonts_enabled);
settings->setXSSAuditorEnabled(xss_auditor_enabled);
settings->setLocalStorageEnabled(local_storage_enabled);
- settings->setDatabasesEnabled(WebKit::databasesEnabled() || databases_enabled);
+ settings->setDatabasesEnabled(
+ WebRuntimeFeatures::isDatabaseEnabled() || databases_enabled);
settings->setSessionStorageEnabled(session_storage_enabled);
settings->setOfflineWebApplicationCacheEnabled(application_cache_enabled);
settings->setExperimentalNotificationsEnabled(

Powered by Google App Engine
This is Rietveld 408576698