| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |