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

Unified Diff: chrome/common/render_messages.h

Issue 10134029: NaCl: Don't pass the NaCl process's Windows handle to the renderer process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use C-style cast Created 8 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
Index: chrome/common/render_messages.h
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
index 6ac36c2e05f9f7634f465acd8eddda9cd0678769..90954614c04b1eb43ce5d1bcb3fd3d733becd243 100644
--- a/chrome/common/render_messages.h
+++ b/chrome/common/render_messages.h
@@ -483,13 +483,11 @@ IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_ForwardMessageToExternalHost,
// A renderer sends this to the browser process when it wants to start
// a new instance of the Native Client process. The browser will launch
// the process and return a handle to an IMC channel.
-IPC_SYNC_MESSAGE_CONTROL2_3(ChromeViewHostMsg_LaunchNaCl,
+IPC_SYNC_MESSAGE_CONTROL2_1(ChromeViewHostMsg_LaunchNaCl,
GURL /* manifest_url */,
int /* socket count */,
std::vector<nacl::FileDescriptor>
- /* imc channel handles */,
- base::ProcessHandle /* NaCl process handle */,
- base::ProcessId /* NaCl process id */)
+ /* imc channel handles */)
// Notification that the page has an OpenSearch description document
// associated with it.

Powered by Google App Engine
This is Rietveld 408576698