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

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

Issue 1675603002: [mojo-edk] Simplify multiprocess pipe bootstrap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
Index: mojo/edk/system/core.h
diff --git a/mojo/edk/system/core.h b/mojo/edk/system/core.h
index 8e9af8eddb5dfaf691d59dad3a24df1cb34c5bfa..63107c3de53964dd91c355dd512bfddbf41e2f0f 100644
--- a/mojo/edk/system/core.h
+++ b/mojo/edk/system/core.h
@@ -52,13 +52,11 @@ class MOJO_SYSTEM_IMPL_EXPORT Core {
// Called in a child process exactly once during early initialization.
void InitChild(ScopedPlatformHandle platform_handle);
- // This creates a message pipe endpoint connected to an endpoint in a remote
+ // Creates a message pipe endpoint connected to an an endpoint in a remote
Anand Mistry (off Chromium) 2016/02/08 06:23:21 "an an"
Ken Rockot(use gerrit already) 2016/02/08 23:20:56 done
// embedder. |platform_handle| is used as a channel to negotiate the
- // connection. This is only here to facilitate legacy embedder code. See
- // mojo::edk::CreateMessagePipe in mojo/edk/embedder/embedder.h.
- void CreateMessagePipe(
- ScopedPlatformHandle platform_handle,
- const base::Callback<void(ScopedMessagePipeHandle)>& callback);
+ // connection.
+ ScopedMessagePipeHandle CreateMessagePipe(
+ ScopedPlatformHandle platform_handle);
// Creates a message pipe endpoint associated with |token|, which a child
// holding the token can later locate and connect to.

Powered by Google App Engine
This is Rietveld 408576698