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

Side by Side Diff: chrome/browser/renderer_host/browser_render_process_host.cc

Issue 551098: Turn on session storage by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/in_process_webkit/dom_storage_uitest.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "chrome/browser/renderer_host/browser_render_process_host.h" 8 #include "chrome/browser/renderer_host/browser_render_process_host.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 switches::kDisableAudio, 527 switches::kDisableAudio,
528 switches::kSimpleDataSource, 528 switches::kSimpleDataSource,
529 switches::kEnableBenchmarking, 529 switches::kEnableBenchmarking,
530 switches::kInternalNaCl, 530 switches::kInternalNaCl,
531 switches::kInternalPepper, 531 switches::kInternalPepper,
532 switches::kDisableByteRangeSupport, 532 switches::kDisableByteRangeSupport,
533 switches::kDisableDatabases, 533 switches::kDisableDatabases,
534 switches::kDisableDesktopNotifications, 534 switches::kDisableDesktopNotifications,
535 switches::kDisableWebSockets, 535 switches::kDisableWebSockets,
536 switches::kDisableLocalStorage, 536 switches::kDisableLocalStorage,
537 switches::kEnableSessionStorage, 537 switches::kDisableSessionStorage,
538 switches::kDisableSharedWorkers, 538 switches::kDisableSharedWorkers,
539 switches::kDisableApplicationCache, 539 switches::kDisableApplicationCache,
540 switches::kEnableIndexedDatabase, 540 switches::kEnableIndexedDatabase,
541 switches::kEnableGeolocation, 541 switches::kEnableGeolocation,
542 switches::kShowPaintRects, 542 switches::kShowPaintRects,
543 switches::kEnableOpenMax, 543 switches::kEnableOpenMax,
544 // We propagate the Chrome Frame command line here as well in case the 544 // We propagate the Chrome Frame command line here as well in case the
545 // renderer is not run in the sandbox. 545 // renderer is not run in the sandbox.
546 switches::kChromeFrame, 546 switches::kChromeFrame,
547 #if defined(OS_MACOSX) 547 #if defined(OS_MACOSX)
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 IPC::InvalidPlatformFileForTransit(), 999 IPC::InvalidPlatformFileForTransit(),
1000 std::vector<std::string>(), 1000 std::vector<std::string>(),
1001 std::string(), 1001 std::string(),
1002 false)); 1002 false));
1003 } 1003 }
1004 } 1004 }
1005 1005
1006 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { 1006 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) {
1007 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); 1007 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable));
1008 } 1008 }
OLDNEW
« no previous file with comments | « chrome/browser/in_process_webkit/dom_storage_uitest.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698