| 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 switches::kMessageLoopHistogrammer, | 525 switches::kMessageLoopHistogrammer, |
| 526 switches::kEnableDCHECK, | 526 switches::kEnableDCHECK, |
| 527 switches::kSilentDumpOnDCHECK, | 527 switches::kSilentDumpOnDCHECK, |
| 528 switches::kUseLowFragHeapCrt, | 528 switches::kUseLowFragHeapCrt, |
| 529 switches::kEnableStatsTable, | 529 switches::kEnableStatsTable, |
| 530 switches::kExperimentalSpellcheckerFeatures, | 530 switches::kExperimentalSpellcheckerFeatures, |
| 531 switches::kDisableAudio, | 531 switches::kDisableAudio, |
| 532 switches::kSimpleDataSource, | 532 switches::kSimpleDataSource, |
| 533 switches::kEnableBenchmarking, | 533 switches::kEnableBenchmarking, |
| 534 switches::kInternalNaCl, | 534 switches::kInternalNaCl, |
| 535 switches::kInternalPDF, |
| 535 switches::kInternalPepper, | 536 switches::kInternalPepper, |
| 536 switches::kDisableByteRangeSupport, | 537 switches::kDisableByteRangeSupport, |
| 537 switches::kDisableDatabases, | 538 switches::kDisableDatabases, |
| 538 switches::kDisableDesktopNotifications, | 539 switches::kDisableDesktopNotifications, |
| 539 switches::kDisableWebSockets, | 540 switches::kDisableWebSockets, |
| 540 switches::kDisableLocalStorage, | 541 switches::kDisableLocalStorage, |
| 541 switches::kDisableSessionStorage, | 542 switches::kDisableSessionStorage, |
| 542 switches::kDisableSharedWorkers, | 543 switches::kDisableSharedWorkers, |
| 543 switches::kDisableApplicationCache, | 544 switches::kDisableApplicationCache, |
| 544 switches::kEnableIndexedDatabase, | 545 switches::kEnableIndexedDatabase, |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 IPC::InvalidPlatformFileForTransit(), | 1025 IPC::InvalidPlatformFileForTransit(), |
| 1025 std::vector<std::string>(), | 1026 std::vector<std::string>(), |
| 1026 std::string(), | 1027 std::string(), |
| 1027 false)); | 1028 false)); |
| 1028 } | 1029 } |
| 1029 } | 1030 } |
| 1030 | 1031 |
| 1031 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { | 1032 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { |
| 1032 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); | 1033 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); |
| 1033 } | 1034 } |
| OLD | NEW |