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

Unified Diff: webkit/api/src/WebKit.cpp

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/api/src/WebKit.cpp
===================================================================
--- webkit/api/src/WebKit.cpp (revision 30559)
+++ webkit/api/src/WebKit.cpp (working copy)
@@ -47,7 +47,6 @@
static WebKitClient* s_webKitClient = 0;
static bool s_layoutTestMode = false;
-static bool s_databasesEnabled = false;
void initialize(WebKitClient* webKitClient)
{
@@ -95,45 +94,9 @@
return s_layoutTestMode;
}
-void enableMediaPlayer()
-{
-#if ENABLE(VIDEO)
- WebMediaPlayerClientImpl::setIsEnabled(true);
-#endif
-}
-
void resetPluginCache(bool reloadPages)
{
WebCore::Page::refreshPlugins(reloadPages);
}
-void enableDatabases()
-{
-#if ENABLE(DATABASE)
- s_databasesEnabled = true;
- WebCore::RuntimeEnabledFeatures::setDatabaseEnabled(true);
-#endif
-}
-
-bool databasesEnabled()
-{
- return s_databasesEnabled;
-}
-
-void enableWebSockets()
-{
-#if ENABLE(WEB_SOCKETS)
- WebCore::WebSocket::setIsAvailable(true);
-#endif
-}
-
-bool webSocketsEnabled()
-{
-#if ENABLE(WEB_SOCKETS)
- return WebCore::WebSocket::isAvailable();
-#else
- return false;
-#endif
-}
-
} // namespace WebKit

Powered by Google App Engine
This is Rietveld 408576698