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

Unified Diff: mojo/system/message_pipe.cc

Issue 140503005: Mojo: foo_[0-9] -> foo[0-9]. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/system/message_pipe.h ('k') | mojo/system/message_pipe_dispatcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system/message_pipe.cc
diff --git a/mojo/system/message_pipe.cc b/mojo/system/message_pipe.cc
index 4083cd8942939675575935fe7610b3ef7f14ab2a..65da7684d19f6761ef55a14e5d61c7af319d8c4a 100644
--- a/mojo/system/message_pipe.cc
+++ b/mojo/system/message_pipe.cc
@@ -15,10 +15,10 @@
namespace mojo {
namespace system {
-MessagePipe::MessagePipe(scoped_ptr<MessagePipeEndpoint> endpoint_0,
- scoped_ptr<MessagePipeEndpoint> endpoint_1) {
- endpoints_[0].reset(endpoint_0.release());
- endpoints_[1].reset(endpoint_1.release());
+MessagePipe::MessagePipe(scoped_ptr<MessagePipeEndpoint> endpoint0,
+ scoped_ptr<MessagePipeEndpoint> endpoint1) {
+ endpoints_[0].reset(endpoint0.release());
+ endpoints_[1].reset(endpoint1.release());
}
MessagePipe::MessagePipe() {
« no previous file with comments | « mojo/system/message_pipe.h ('k') | mojo/system/message_pipe_dispatcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698