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

Unified Diff: mojo/public/platform/native/system_thunks.cc

Issue 324783002: Mojo: Add a MojoCreateMessagePipeOptions struct parameter to MojoCreateMessagePipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 6 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 | « mojo/public/platform/native/system_thunks.h ('k') | mojo/system/core.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/platform/native/system_thunks.cc
diff --git a/mojo/public/platform/native/system_thunks.cc b/mojo/public/platform/native/system_thunks.cc
index bd82b0027322b25d0726737d80c330336eb2bef3..ac034503913fe4912b5245ca6805e60e36278653 100644
--- a/mojo/public/platform/native/system_thunks.cc
+++ b/mojo/public/platform/native/system_thunks.cc
@@ -35,10 +35,12 @@ MojoResult MojoWaitMany(const MojoHandle* handles,
return g_thunks.WaitMany(handles, flags, num_handles, deadline);
}
-MojoResult MojoCreateMessagePipe(MojoHandle* message_pipe_handle0,
+MojoResult MojoCreateMessagePipe(const MojoCreateMessagePipeOptions* options,
+ MojoHandle* message_pipe_handle0,
MojoHandle* message_pipe_handle1) {
assert(g_thunks.CreateMessagePipe);
- return g_thunks.CreateMessagePipe(message_pipe_handle0, message_pipe_handle1);
+ return g_thunks.CreateMessagePipe(options, message_pipe_handle0,
+ message_pipe_handle1);
}
MojoResult MojoWriteMessage(MojoHandle message_pipe_handle,
« no previous file with comments | « mojo/public/platform/native/system_thunks.h ('k') | mojo/system/core.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698