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

Unified Diff: mojo/public/system/core_private.h

Issue 103533008: Mojo: More data pipe implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: mojo/public/system/core_private.h
diff --git a/mojo/public/system/core_private.h b/mojo/public/system/core_private.h
index 1095e989feddbb82740361c321f0ed5d6f392600..6df72453171e4032be29ea5c79b34ea9b5a4a468 100644
--- a/mojo/public/system/core_private.h
+++ b/mojo/public/system/core_private.h
@@ -41,10 +41,9 @@ class MOJO_SYSTEM_EXPORT CorePrivate {
MojoHandle* handles,
uint32_t* num_handles,
MojoReadMessageFlags flags) = 0;
- virtual MojoResult CreateDataPipe(
- const struct MojoCreateDataPipeOptions* options,
- MojoHandle* producer_handle,
- MojoHandle* consumer_handle) = 0;
+ virtual MojoResult CreateDataPipe(const MojoCreateDataPipeOptions* options,
+ MojoHandle* data_pipe_producer_handle,
+ MojoHandle* data_pipe_consumer_handle) = 0;
virtual MojoResult WriteData(MojoHandle data_pipe_producer_handle,
const void* elements,
uint32_t* num_elements,

Powered by Google App Engine
This is Rietveld 408576698