Chromium Code Reviews| 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_; |