Chromium Code Reviews| 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 27 matching lines...) Expand all Loading... | |
| 38 #include "chrome/browser/plugin_service.h" | 38 #include "chrome/browser/plugin_service.h" |
| 39 #include "chrome/browser/profile.h" | 39 #include "chrome/browser/profile.h" |
| 40 #include "chrome/browser/renderer_host/audio_renderer_host.h" | 40 #include "chrome/browser/renderer_host/audio_renderer_host.h" |
| 41 #include "chrome/browser/renderer_host/pepper_file_message_filter.h" | 41 #include "chrome/browser/renderer_host/pepper_file_message_filter.h" |
| 42 #include "chrome/browser/renderer_host/render_view_host.h" | 42 #include "chrome/browser/renderer_host/render_view_host.h" |
| 43 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 43 #include "chrome/browser/renderer_host/render_view_host_delegate.h" |
| 44 #include "chrome/browser/renderer_host/render_widget_helper.h" | 44 #include "chrome/browser/renderer_host/render_widget_helper.h" |
| 45 #include "chrome/browser/renderer_host/render_widget_host.h" | 45 #include "chrome/browser/renderer_host/render_widget_host.h" |
| 46 #include "chrome/browser/renderer_host/resource_message_filter.h" | 46 #include "chrome/browser/renderer_host/resource_message_filter.h" |
| 47 #include "chrome/browser/renderer_host/web_cache_manager.h" | 47 #include "chrome/browser/renderer_host/web_cache_manager.h" |
| 48 #include "chrome/browser/speech/speech_input_manager.h" | |
|
Satish
2011/01/06 21:49:41
this could be rolled back since there is no new co
| |
| 48 #include "chrome/browser/spellcheck_host.h" | 49 #include "chrome/browser/spellcheck_host.h" |
| 49 #include "chrome/browser/metrics/user_metrics.h" | 50 #include "chrome/browser/metrics/user_metrics.h" |
| 50 #include "chrome/browser/visitedlink_master.h" | 51 #include "chrome/browser/visitedlink_master.h" |
| 51 #include "chrome/common/chrome_paths.h" | 52 #include "chrome/common/chrome_paths.h" |
| 52 #include "chrome/common/chrome_switches.h" | 53 #include "chrome/common/chrome_switches.h" |
| 53 #include "chrome/common/child_process_info.h" | 54 #include "chrome/common/child_process_info.h" |
| 54 #include "chrome/common/extensions/extension.h" | 55 #include "chrome/common/extensions/extension.h" |
| 55 #include "chrome/common/extensions/extension_icon_set.h" | 56 #include "chrome/common/extensions/extension_icon_set.h" |
| 56 #include "chrome/common/gpu_messages.h" | 57 #include "chrome/common/gpu_messages.h" |
| 57 #include "chrome/common/logging_chrome.h" | 58 #include "chrome/common/logging_chrome.h" |
| (...skipping 1083 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 |