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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 switches::kMessageLoopHistogrammer, | 510 switches::kMessageLoopHistogrammer, |
511 switches::kEnableDCHECK, | 511 switches::kEnableDCHECK, |
512 switches::kSilentDumpOnDCHECK, | 512 switches::kSilentDumpOnDCHECK, |
513 switches::kUseLowFragHeapCrt, | 513 switches::kUseLowFragHeapCrt, |
514 switches::kEnableStatsTable, | 514 switches::kEnableStatsTable, |
515 switches::kExperimentalSpellcheckerFeatures, | 515 switches::kExperimentalSpellcheckerFeatures, |
516 switches::kDisableAudio, | 516 switches::kDisableAudio, |
517 switches::kSimpleDataSource, | 517 switches::kSimpleDataSource, |
518 switches::kEnableBenchmarking, | 518 switches::kEnableBenchmarking, |
519 switches::kInternalNaCl, | 519 switches::kInternalNaCl, |
| 520 switches::kInternalPepper, |
520 switches::kDisableByteRangeSupport, | 521 switches::kDisableByteRangeSupport, |
521 switches::kDisableDatabases, | 522 switches::kDisableDatabases, |
522 switches::kDisableDesktopNotifications, | 523 switches::kDisableDesktopNotifications, |
523 switches::kDisableWebSockets, | 524 switches::kDisableWebSockets, |
524 switches::kDisableLocalStorage, | 525 switches::kDisableLocalStorage, |
525 switches::kEnableSessionStorage, | 526 switches::kEnableSessionStorage, |
526 switches::kDisableSharedWorkers, | 527 switches::kDisableSharedWorkers, |
527 switches::kEnableApplicationCache, | 528 switches::kEnableApplicationCache, |
528 switches::kShowPaintRects, | 529 switches::kShowPaintRects, |
529 // We propagate the Chrome Frame command line here as well in case the | 530 // We propagate the Chrome Frame command line here as well in case the |
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1003 IPC::PlatformFileForTransit(), | 1004 IPC::PlatformFileForTransit(), |
1004 std::vector<std::string>(), | 1005 std::vector<std::string>(), |
1005 std::string(), | 1006 std::string(), |
1006 false)); | 1007 false)); |
1007 } | 1008 } |
1008 } | 1009 } |
1009 | 1010 |
1010 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { | 1011 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { |
1011 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); | 1012 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); |
1012 } | 1013 } |
OLD | NEW |