| 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 switches::kMessageLoopHistogrammer, | 533 switches::kMessageLoopHistogrammer, |
| 534 switches::kEnableDCHECK, | 534 switches::kEnableDCHECK, |
| 535 switches::kSilentDumpOnDCHECK, | 535 switches::kSilentDumpOnDCHECK, |
| 536 switches::kUseLowFragHeapCrt, | 536 switches::kUseLowFragHeapCrt, |
| 537 switches::kEnableStatsTable, | 537 switches::kEnableStatsTable, |
| 538 switches::kExperimentalSpellcheckerFeatures, | 538 switches::kExperimentalSpellcheckerFeatures, |
| 539 switches::kDisableAudio, | 539 switches::kDisableAudio, |
| 540 switches::kSimpleDataSource, | 540 switches::kSimpleDataSource, |
| 541 switches::kEnableBenchmarking, | 541 switches::kEnableBenchmarking, |
| 542 switches::kInternalNaCl, | 542 switches::kInternalNaCl, |
| 543 switches::kInternalPDF, | |
| 544 switches::kInternalPepper, | 543 switches::kInternalPepper, |
| 545 switches::kRegisterPepperPlugins, | 544 switches::kRegisterPepperPlugins, |
| 546 switches::kDisableByteRangeSupport, | 545 switches::kDisableByteRangeSupport, |
| 547 switches::kDisableDatabases, | 546 switches::kDisableDatabases, |
| 548 switches::kDisableDesktopNotifications, | 547 switches::kDisableDesktopNotifications, |
| 549 switches::kDisableWebSockets, | 548 switches::kDisableWebSockets, |
| 550 switches::kDisableLocalStorage, | 549 switches::kDisableLocalStorage, |
| 551 switches::kDisableSessionStorage, | 550 switches::kDisableSessionStorage, |
| 552 switches::kDisableSharedWorkers, | 551 switches::kDisableSharedWorkers, |
| 553 switches::kDisableApplicationCache, | 552 switches::kDisableApplicationCache, |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 IPC::InvalidPlatformFileForTransit(), | 1060 IPC::InvalidPlatformFileForTransit(), |
| 1062 std::vector<std::string>(), | 1061 std::vector<std::string>(), |
| 1063 std::string(), | 1062 std::string(), |
| 1064 false)); | 1063 false)); |
| 1065 } | 1064 } |
| 1066 } | 1065 } |
| 1067 | 1066 |
| 1068 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { | 1067 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { |
| 1069 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); | 1068 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); |
| 1070 } | 1069 } |
| OLD | NEW |