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

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

Issue 133453003: Mojo: Change "handle_[01]" -> "handle[01]". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment fix Created 6 years, 11 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/apps/js/bindings/core.cc ('k') | mojo/public/system/core_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/system/core.h
diff --git a/mojo/public/system/core.h b/mojo/public/system/core.h
index 923cd59eb0c48f7c4fa4e982c6af580c1254f98e..bb367488881a455c490d659ab6618c17e994df6e 100644
--- a/mojo/public/system/core.h
+++ b/mojo/public/system/core.h
@@ -348,20 +348,20 @@ MOJO_SYSTEM_EXPORT MojoResult MojoWaitMany(const MojoHandle* handles,
// Creates a message pipe, which is a bidirectional communication channel for
// framed data (i.e., messages). Messages can contain plain data and/or Mojo
-// handles. On success, |*message_pipe_handle_0| and |*message_pipe_1| are set
-// to handles for the two endpoints (ports) for the message pipe.
+// handles. On success, |*message_pipe_handle0| and |*message_pipe_handle1| are
+// set to handles for the two endpoints (ports) for the message pipe.
//
// Returns:
// |MOJO_RESULT_OK| on success.
-// |MOJO_RESULT_INVALID_ARGUMENT| if |message_pipe_handle_0| and/or
-// |message_pipe_handle_1| do not appear to be valid pointers.
+// |MOJO_RESULT_INVALID_ARGUMENT| if |message_pipe_handle0| and/or
+// |message_pipe_handle1| do not appear to be valid pointers.
// |MOJO_RESULT_RESOURCE_EXHAUSTED| if a process/system/quota/etc. limit has
// been reached.
//
// TODO(vtl): Add an options struct pointer argument.
MOJO_SYSTEM_EXPORT MojoResult MojoCreateMessagePipe(
- MojoHandle* message_pipe_handle_0,
- MojoHandle* message_pipe_handle_1);
+ MojoHandle* message_pipe_handle0,
+ MojoHandle* message_pipe_handle1);
// Writes a message to the message pipe endpoint given by |message_pipe_handle|,
// with message data specified by |bytes| of size |num_bytes| and attached
« no previous file with comments | « mojo/apps/js/bindings/core.cc ('k') | mojo/public/system/core_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698