Index: components/nacl/browser/nacl_process_host.h |
diff --git a/components/nacl/browser/nacl_process_host.h b/components/nacl/browser/nacl_process_host.h |
index 26c4914ac684c148ff611edbc648590fe470f160..63e6a1d6d5b553695e3258e62b947d99c032f749 100644 |
--- a/components/nacl/browser/nacl_process_host.h |
+++ b/components/nacl/browser/nacl_process_host.h |
@@ -177,7 +177,9 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate { |
#endif |
// Called when the PPAPI IPC channel to the browser has been created. |
- void OnPpapiBrowserChannelCreated(const IPC::ChannelHandle& channel_handle); |
+ void OnPpapiBrowserChannelCreated( |
Mark Seaborn
2014/02/03 22:59:07
Rename to OnPpapiChannelsCreated()?
Mark Seaborn
2014/02/07 22:53:43
Can you rebase this onto the refactoring that you
|
+ const IPC::ChannelHandle& browser_channel_handle, |
+ const IPC::ChannelHandle& renderer_channel_handle); |
// Called when the PPAPI IPC channel to the renderer has been created. |
void OnPpapiRendererChannelCreated(const IPC::ChannelHandle& channel_handle); |
Mark Seaborn
2014/02/03 22:59:07
This method should go away, right?
|