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

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

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/public/system/core_private.h ('k') | mojo/system/core_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/system/core_private.cc
diff --git a/mojo/public/system/core_private.cc b/mojo/public/system/core_private.cc
index f0bc3f156bee96d9d967ae6eaa3d7ebff28da8ea..8e5b701239874292b93e74c41e1595cdc4f37c22 100644
--- a/mojo/public/system/core_private.cc
+++ b/mojo/public/system/core_private.cc
@@ -36,11 +36,10 @@ MojoResult MojoWaitMany(const MojoHandle* handles,
return g_core->WaitMany(handles, flags, num_handles, deadline);
}
-MojoResult MojoCreateMessagePipe(MojoHandle* message_pipe_handle_0,
- MojoHandle* message_pipe_handle_1) {
+MojoResult MojoCreateMessagePipe(MojoHandle* message_pipe_handle0,
+ MojoHandle* message_pipe_handle1) {
assert(g_core);
- return g_core->CreateMessagePipe(message_pipe_handle_0,
- message_pipe_handle_1);
+ return g_core->CreateMessagePipe(message_pipe_handle0, message_pipe_handle1);
}
MojoResult MojoWriteMessage(MojoHandle message_pipe_handle,
« no previous file with comments | « mojo/public/system/core_private.h ('k') | mojo/system/core_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698