| 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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 switches::kDisableByteRangeSupport, | 541 switches::kDisableByteRangeSupport, |
| 542 switches::kDisableDatabases, | 542 switches::kDisableDatabases, |
| 543 switches::kDisableDesktopNotifications, | 543 switches::kDisableDesktopNotifications, |
| 544 switches::kDisableWebSockets, | 544 switches::kDisableWebSockets, |
| 545 switches::kDisableLocalStorage, | 545 switches::kDisableLocalStorage, |
| 546 switches::kDisableSessionStorage, | 546 switches::kDisableSessionStorage, |
| 547 switches::kDisableSharedWorkers, | 547 switches::kDisableSharedWorkers, |
| 548 switches::kDisableApplicationCache, | 548 switches::kDisableApplicationCache, |
| 549 switches::kEnableDeviceOrientation, | 549 switches::kEnableDeviceOrientation, |
| 550 switches::kEnableIndexedDatabase, | 550 switches::kEnableIndexedDatabase, |
| 551 switches::kEnableSpeechInput, |
| 551 switches::kDisableGeolocation, | 552 switches::kDisableGeolocation, |
| 552 switches::kShowPaintRects, | 553 switches::kShowPaintRects, |
| 553 switches::kEnableOpenMax, | 554 switches::kEnableOpenMax, |
| 554 switches::kVideoThreads, | 555 switches::kVideoThreads, |
| 555 switches::kEnableVideoFullscreen, | 556 switches::kEnableVideoFullscreen, |
| 556 switches::kEnableVideoLayering, | 557 switches::kEnableVideoLayering, |
| 557 switches::kEnableVideoLogging, | 558 switches::kEnableVideoLogging, |
| 558 switches::kEnableTouch, | 559 switches::kEnableTouch, |
| 559 // We propagate the Chrome Frame command line here as well in case the | 560 // We propagate the Chrome Frame command line here as well in case the |
| 560 // renderer is not run in the sandbox. | 561 // renderer is not run in the sandbox. |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1064 IPC::InvalidPlatformFileForTransit(), | 1065 IPC::InvalidPlatformFileForTransit(), |
| 1065 std::vector<std::string>(), | 1066 std::vector<std::string>(), |
| 1066 std::string(), | 1067 std::string(), |
| 1067 false)); | 1068 false)); |
| 1068 } | 1069 } |
| 1069 } | 1070 } |
| 1070 | 1071 |
| 1071 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { | 1072 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { |
| 1072 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); | 1073 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); |
| 1073 } | 1074 } |
| OLD | NEW |