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

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: Added ChannelMojoHost 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 945a847a5275e33f2257734852ce1c6ab91629d8..01374ed615ee198ea146a201cc0cab4733af5df0 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 BrowserDemuxerAndroid;
@@ -250,6 +254,10 @@ class CONTENT_EXPORT RenderProcessHostImpl
// browser_process.h)
scoped_ptr<IPC::ChannelProxy> channel_;
+ // A host object ChannelMojo needs. The lifetime is bound to
+ // RenderProcessHostImpl, not channel.
+ scoped_ptr<IPC::ChannelMojoHost> channel_host_;
viettrungluu 2014/09/17 17:33:15 I wonder if you should call this channel_mojo_host
Hajime Morrita 2014/09/17 19:33:48 Done.
+
// True if fast shutdown has been performed on this RPH.
bool fast_shutdown_started_;

Powered by Google App Engine
This is Rietveld 408576698