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

Unified Diff: mojo/system/entrypoints.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/system/data_pipe.h ('k') | mojo/system/message_pipe_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system/entrypoints.cc
diff --git a/mojo/system/entrypoints.cc b/mojo/system/entrypoints.cc
index 7f217ae71bdf68fe141409544c779cf191680f17..8274f9317bfeac443b1a59c9f5e9b3bdc7ab5891 100644
--- a/mojo/system/entrypoints.cc
+++ b/mojo/system/entrypoints.cc
@@ -52,9 +52,11 @@ MojoResult MojoWaitMany(const MojoHandle* handles,
return g_core->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) {
- return g_core->CreateMessagePipe(message_pipe_handle0, message_pipe_handle1);
+ return g_core->CreateMessagePipe(
+ options, message_pipe_handle0, message_pipe_handle1);
}
MojoResult MojoWriteMessage(MojoHandle message_pipe_handle,
« no previous file with comments | « mojo/system/data_pipe.h ('k') | mojo/system/message_pipe_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698