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_; |