| 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 switches::kInternalPepper, | 534 switches::kInternalPepper, |
| 535 switches::kRegisterPepperPlugins, | 535 switches::kRegisterPepperPlugins, |
| 536 switches::kDisableByteRangeSupport, | 536 switches::kDisableByteRangeSupport, |
| 537 switches::kDisableDatabases, | 537 switches::kDisableDatabases, |
| 538 switches::kDisableDesktopNotifications, | 538 switches::kDisableDesktopNotifications, |
| 539 switches::kDisableWebSockets, | 539 switches::kDisableWebSockets, |
| 540 switches::kDisableLocalStorage, | 540 switches::kDisableLocalStorage, |
| 541 switches::kDisableSessionStorage, | 541 switches::kDisableSessionStorage, |
| 542 switches::kDisableSharedWorkers, | 542 switches::kDisableSharedWorkers, |
| 543 switches::kDisableApplicationCache, | 543 switches::kDisableApplicationCache, |
| 544 switches::kEnableDeviceOrientation, | 544 switches::kDisableDeviceOrientation, |
| 545 switches::kEnableIndexedDatabase, | 545 switches::kEnableIndexedDatabase, |
| 546 switches::kEnableSpeechInput, | 546 switches::kEnableSpeechInput, |
| 547 switches::kDisableGeolocation, | 547 switches::kDisableGeolocation, |
| 548 switches::kShowPaintRects, | 548 switches::kShowPaintRects, |
| 549 switches::kEnableOpenMax, | 549 switches::kEnableOpenMax, |
| 550 switches::kVideoThreads, | 550 switches::kVideoThreads, |
| 551 switches::kEnableVideoFullscreen, | 551 switches::kEnableVideoFullscreen, |
| 552 switches::kEnableVideoLayering, | 552 switches::kEnableVideoLayering, |
| 553 switches::kEnableVideoLogging, | 553 switches::kEnableVideoLogging, |
| 554 switches::kEnableTouch, | 554 switches::kEnableTouch, |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 IPC::InvalidPlatformFileForTransit(), | 1066 IPC::InvalidPlatformFileForTransit(), |
| 1067 std::vector<std::string>(), | 1067 std::vector<std::string>(), |
| 1068 std::string(), | 1068 std::string(), |
| 1069 false)); | 1069 false)); |
| 1070 } | 1070 } |
| 1071 } | 1071 } |
| 1072 | 1072 |
| 1073 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { | 1073 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { |
| 1074 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); | 1074 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); |
| 1075 } | 1075 } |
| OLD | NEW |