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

Unified Diff: content/browser/mach_broker_mac.cc

Issue 8515027: Define the public version of the browser side RenderProcessHost interface. This interface is not ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/host_zoom_map.cc ('k') | content/browser/mock_content_browser_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/mach_broker_mac.cc
===================================================================
--- content/browser/mach_broker_mac.cc (revision 110571)
+++ content/browser/mach_broker_mac.cc (working copy)
@@ -12,7 +12,7 @@
#include "base/stringprintf.h"
#include "base/sys_string_conversions.h"
#include "base/threading/platform_thread.h"
-#include "content/browser/renderer_host/render_process_host.h"
+#include "content/browser/renderer_host/render_process_host_impl.h"
#include "content/common/child_process_info.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_service.h"
@@ -211,11 +211,12 @@
switch (type) {
case content::NOTIFICATION_RENDERER_PROCESS_CLOSED:
handle =
- content::Details<RenderProcessHost::RendererClosedDetails>(details)->
- handle;
+ content::Details<content::RenderProcessHost::RendererClosedDetails>(
+ details)->handle;
break;
case content::NOTIFICATION_RENDERER_PROCESS_TERMINATED:
- handle = content::Source<RenderProcessHost>(source)->GetHandle();
+ handle = content::Source<content::RenderProcessHost>(source)->
+ GetHandle();
break;
case content::NOTIFICATION_CHILD_PROCESS_CRASHED:
case content::NOTIFICATION_CHILD_PROCESS_HOST_DISCONNECTED:
« no previous file with comments | « content/browser/host_zoom_map.cc ('k') | content/browser/mock_content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698