| 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 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 #endif | 617 #endif |
| 618 switches::kRemoteShellPort, | 618 switches::kRemoteShellPort, |
| 619 switches::kEnablePepperTesting, | 619 switches::kEnablePepperTesting, |
| 620 switches::kBlockNonSandboxedPlugins, | 620 switches::kBlockNonSandboxedPlugins, |
| 621 switches::kDisableOutdatedPlugins, | 621 switches::kDisableOutdatedPlugins, |
| 622 switches::kEnableRemoting, | 622 switches::kEnableRemoting, |
| 623 switches::kDisableClickToPlay, | 623 switches::kDisableClickToPlay, |
| 624 switches::kEnableResourceContentSettings, | 624 switches::kEnableResourceContentSettings, |
| 625 switches::kPrelaunchGpuProcess, | 625 switches::kPrelaunchGpuProcess, |
| 626 switches::kEnableAcceleratedDecoding, | 626 switches::kEnableAcceleratedDecoding, |
| 627 switches::kDisableFileSystem | 627 switches::kDisableFileSystem, |
| 628 switches::kPpapiOutOfProcess |
| 628 }; | 629 }; |
| 629 renderer_cmd->CopySwitchesFrom(browser_cmd, kSwitchNames, | 630 renderer_cmd->CopySwitchesFrom(browser_cmd, kSwitchNames, |
| 630 arraysize(kSwitchNames)); | 631 arraysize(kSwitchNames)); |
| 631 | 632 |
| 632 // Disable databases in incognito mode. | 633 // Disable databases in incognito mode. |
| 633 if (profile()->IsOffTheRecord() && | 634 if (profile()->IsOffTheRecord() && |
| 634 !browser_cmd.HasSwitch(switches::kDisableDatabases)) { | 635 !browser_cmd.HasSwitch(switches::kDisableDatabases)) { |
| 635 renderer_cmd->AppendSwitch(switches::kDisableDatabases); | 636 renderer_cmd->AppendSwitch(switches::kDisableDatabases); |
| 636 } | 637 } |
| 637 } | 638 } |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 IPC::InvalidPlatformFileForTransit(), | 1142 IPC::InvalidPlatformFileForTransit(), |
| 1142 std::vector<std::string>(), | 1143 std::vector<std::string>(), |
| 1143 std::string(), | 1144 std::string(), |
| 1144 false)); | 1145 false)); |
| 1145 } | 1146 } |
| 1146 } | 1147 } |
| 1147 | 1148 |
| 1148 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { | 1149 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { |
| 1149 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); | 1150 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); |
| 1150 } | 1151 } |
| OLD | NEW |