| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 switches::kEnableDCHECK, | 550 switches::kEnableDCHECK, |
| 551 switches::kSilentDumpOnDCHECK, | 551 switches::kSilentDumpOnDCHECK, |
| 552 switches::kUseLowFragHeapCrt, | 552 switches::kUseLowFragHeapCrt, |
| 553 switches::kEnableStatsTable, | 553 switches::kEnableStatsTable, |
| 554 switches::kExperimentalSpellcheckerFeatures, | 554 switches::kExperimentalSpellcheckerFeatures, |
| 555 switches::kDisableAudio, | 555 switches::kDisableAudio, |
| 556 switches::kSimpleDataSource, | 556 switches::kSimpleDataSource, |
| 557 switches::kEnableBenchmarking, | 557 switches::kEnableBenchmarking, |
| 558 switches::kInternalNaCl, | 558 switches::kInternalNaCl, |
| 559 switches::kDisableByteRangeSupport, | 559 switches::kDisableByteRangeSupport, |
| 560 switches::kDisableDesktopNotifications, |
| 560 switches::kDisableWebSockets, | 561 switches::kDisableWebSockets, |
| 561 switches::kDisableLocalStorage, | 562 switches::kDisableLocalStorage, |
| 562 switches::kEnableSessionStorage, | 563 switches::kEnableSessionStorage, |
| 563 switches::kDisableSharedWorkers, | 564 switches::kDisableSharedWorkers, |
| 564 switches::kEnableDesktopNotifications, | |
| 565 switches::kEnableApplicationCache, | 565 switches::kEnableApplicationCache, |
| 566 // We propagate the Chrome Frame command line here as well in case the | 566 // We propagate the Chrome Frame command line here as well in case the |
| 567 // renderer is not run in the sandbox. | 567 // renderer is not run in the sandbox. |
| 568 switches::kChromeFrame, | 568 switches::kChromeFrame, |
| 569 #if defined(OS_MACOSX) | 569 #if defined(OS_MACOSX) |
| 570 // Allow this to be set when invoking the browser and relayed along. | 570 // Allow this to be set when invoking the browser and relayed along. |
| 571 switches::kEnableSandboxLogging, | 571 switches::kEnableSandboxLogging, |
| 572 #endif | 572 #endif |
| 573 }; | 573 }; |
| 574 | 574 |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1155 std::vector<std::string>(), | 1155 std::vector<std::string>(), |
| 1156 std::string(), | 1156 std::string(), |
| 1157 false)); | 1157 false)); |
| 1158 } | 1158 } |
| 1159 } | 1159 } |
| 1160 | 1160 |
| 1161 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { | 1161 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { |
| 1162 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); | 1162 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); |
| 1163 } | 1163 } |
| 1164 #endif | 1164 #endif |
| OLD | NEW |