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

Unified Diff: content/public/common/content_switches.cc

Issue 8747002: Dispatch IndexedDB IPC messages to worker threads (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: repurpose obsolete indexed-db switch to control idb on workers Created 9 years 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: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index a9e10833b6225f2cc7ecf78d03704357fae1509c..524bead98354da33c9dd1215320efd1ec666f328 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -111,9 +111,6 @@ const char kDisableHangMonitor[] = "disable-hang-monitor";
// messages.
const char kDisableGpuWatchdog[] = "disable-gpu-watchdog";
-// Disable the Indexed Database API.
-const char kDisableIndexedDatabase[] = "disable-indexed-database";
-
// Prevent Java from running.
const char kDisableJava[] = "disable-java";
@@ -205,6 +202,9 @@ const char kEnableGamepad[] = "enable-gamepad";
// Enable the GPU plugin and Pepper 3D rendering.
const char kEnableGPUPlugin[] = "enable-gpu-plugin";
+// Allow web workers to access the Indexed Database API.
+const char kEnableIndexedDatabaseOnWorkers[]= "enable-indexeddb-on-workers";
+
// Force logging to be enabled. Logging is disabled by default in release
// builds.
const char kEnableLogging[] = "enable-logging";

Powered by Google App Engine
This is Rietveld 408576698