Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: chrome/browser/renderer_host/browser_render_process_host.cc

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-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 "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 28 matching lines...) Expand all
39 #include "chrome/browser/plugin_service.h" 39 #include "chrome/browser/plugin_service.h"
40 #include "chrome/browser/profile.h" 40 #include "chrome/browser/profile.h"
41 #include "chrome/browser/renderer_host/render_view_host.h" 41 #include "chrome/browser/renderer_host/render_view_host.h"
42 #include "chrome/browser/renderer_host/render_widget_helper.h" 42 #include "chrome/browser/renderer_host/render_widget_helper.h"
43 #include "chrome/browser/renderer_host/render_widget_host.h" 43 #include "chrome/browser/renderer_host/render_widget_host.h"
44 #include "chrome/browser/renderer_host/resource_message_filter.h" 44 #include "chrome/browser/renderer_host/resource_message_filter.h"
45 #include "chrome/browser/renderer_host/web_cache_manager.h" 45 #include "chrome/browser/renderer_host/web_cache_manager.h"
46 #include "chrome/browser/spellchecker.h" 46 #include "chrome/browser/spellchecker.h"
47 #include "chrome/browser/visitedlink_master.h" 47 #include "chrome/browser/visitedlink_master.h"
48 #include "chrome/common/chrome_switches.h" 48 #include "chrome/common/chrome_switches.h"
49 #include "chrome/common/child_process_info.h"
49 #include "chrome/common/chrome_descriptors.h" 50 #include "chrome/common/chrome_descriptors.h"
50 #include "chrome/common/child_process_info.h"
51 #include "chrome/common/logging_chrome.h" 51 #include "chrome/common/logging_chrome.h"
52 #include "chrome/common/notification_service.h" 52 #include "chrome/common/notification_service.h"
53 #include "chrome/common/process_watcher.h" 53 #include "chrome/common/process_watcher.h"
54 #include "chrome/common/render_messages.h" 54 #include "chrome/common/render_messages.h"
55 #include "chrome/common/result_codes.h" 55 #include "chrome/common/result_codes.h"
56 #include "chrome/renderer/render_process.h" 56 #include "chrome/renderer/render_process.h"
57 #include "chrome/installer/util/google_update_settings.h" 57 #include "chrome/installer/util/google_update_settings.h"
58 #include "grit/generated_resources.h" 58 #include "grit/generated_resources.h"
59 59
60 #if defined(OS_WIN) 60 #if defined(OS_WIN)
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 profile()->GetExtensionMessageService()->RemoveEventListener(event_name, 975 profile()->GetExtensionMessageService()->RemoveEventListener(event_name,
976 pid()); 976 pid());
977 } 977 }
978 } 978 }
979 979
980 void BrowserRenderProcessHost::OnExtensionCloseChannel(int port_id) { 980 void BrowserRenderProcessHost::OnExtensionCloseChannel(int port_id) {
981 if (profile()->GetExtensionMessageService()) { 981 if (profile()->GetExtensionMessageService()) {
982 profile()->GetExtensionMessageService()->CloseChannel(port_id); 982 profile()->GetExtensionMessageService()->CloseChannel(port_id);
983 } 983 }
984 } 984 }
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/audio_renderer_host.cc ('k') | chrome/browser/renderer_host/render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698