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

Unified Diff: components/nacl/browser/nacl_process_host.h

Issue 231793003: Add IPC Channel for new ManifestService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
« no previous file with comments | « components/nacl.gyp ('k') | components/nacl/browser/nacl_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 370599d85d1bc5d379ff3f912a44cc52df6d2fe8..37af81adf6ba528cc867aae0be08e7942923d1d1 100644
--- a/components/nacl/browser/nacl_process_host.h
+++ b/components/nacl/browser/nacl_process_host.h
@@ -125,8 +125,10 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
// Sends the reply message to the renderer who is waiting for the plugin
// to load. Returns true on success.
- bool ReplyToRenderer(const IPC::ChannelHandle& ppapi_channel_handle,
- const IPC::ChannelHandle& trusted_channel_handle);
+ bool ReplyToRenderer(
+ const IPC::ChannelHandle& ppapi_channel_handle,
+ const IPC::ChannelHandle& trusted_channel_handle,
+ const IPC::ChannelHandle& manifest_service_channel_handle);
// Sends the reply with error message to the renderer.
void SendErrorToRenderer(const std::string& error_message);
@@ -168,7 +170,8 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
void OnPpapiChannelsCreated(
const IPC::ChannelHandle& browser_channel_handle,
const IPC::ChannelHandle& ppapi_renderer_channel_handle,
- const IPC::ChannelHandle& trusted_renderer_channel_handle);
+ const IPC::ChannelHandle& trusted_renderer_channel_handle,
+ const IPC::ChannelHandle& manifest_service_channel_handle);
GURL manifest_url_;
ppapi::PpapiPermissions permissions_;
« no previous file with comments | « components/nacl.gyp ('k') | components/nacl/browser/nacl_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698