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

Unified Diff: chrome/browser/renderer_host/browser_render_process_host.cc

Issue 366032: Turn LocalStorage on by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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: chrome/browser/renderer_host/browser_render_process_host.cc
===================================================================
--- chrome/browser/renderer_host/browser_render_process_host.cc (revision 31108)
+++ chrome/browser/renderer_host/browser_render_process_host.cc (working copy)
@@ -289,10 +289,8 @@
CommandLine cmd_line(renderer_path);
cmd_line.AppendSwitchWithValue(switches::kProcessChannelID,
ASCIIToWide(channel_id));
- if (is_extensions_process) {
+ if (is_extensions_process)
cmd_line.AppendSwitch(switches::kEnableDatabases);
- cmd_line.AppendSwitch(switches::kEnableLocalStorage);
- }
bool has_cmd_prefix;
AppendRendererCommandLine(&cmd_line, &has_cmd_prefix);
@@ -526,7 +524,7 @@
switches::kEnableDatabases,
switches::kDisableByteRangeSupport,
switches::kDisableWebSockets,
- switches::kEnableLocalStorage,
+ switches::kDisableLocalStorage,
switches::kEnableSessionStorage,
switches::kEnableDesktopNotifications,
// We propagate the Chrome Frame command line here as well in case the

Powered by Google App Engine
This is Rietveld 408576698