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

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 553283002: IPC::ChannelMojo: Introduce IPC::MojoBootstrap for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_process_host_impl.h
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index a25fd444d474711a694dac994eea0273572ccd12..67a67394259b0185e3960c09a2acfe053ef7f49b 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -34,6 +34,10 @@ namespace gfx {
class Size;
}
+namespace IPC {
+class ChannelMojoHost;
+}
+
namespace content {
class AudioRendererHost;
class BrowserCdmManager;
@@ -260,6 +264,10 @@ class CONTENT_EXPORT RenderProcessHostImpl
// browser_process.h)
scoped_ptr<IPC::ChannelProxy> channel_;
+ // A host object ChannelMojo needs. The lifetime is bound to
viettrungluu 2014/09/22 19:13:08 nit: to *the* RenderProcessHostImpl, not *the* cha
Hajime Morrita 2014/09/22 19:32:47 Done.
+ // RenderProcessHostImpl, not channel.
+ scoped_ptr<IPC::ChannelMojoHost> channel_mojo_host_;
+
// True if fast shutdown has been performed on this RPH.
bool fast_shutdown_started_;
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | ipc/mojo/ipc_channel_mojo.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698