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

Unified Diff: mojo/edk/system/broker_host.cc

Issue 2738853002: Connections now take a ConnectionParams instead of a pipe handle. (Closed)
Patch Set: Fix Win release build. Created 3 years, 9 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/edk/embedder/pending_process_connection.cc ('k') | mojo/edk/system/channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/broker_host.cc
diff --git a/mojo/edk/system/broker_host.cc b/mojo/edk/system/broker_host.cc
index 28d5157321dababce0a9a0e53efdee16328f3232..6096034fa2ade820de10437e22a5ba840c8cfde2 100644
--- a/mojo/edk/system/broker_host.cc
+++ b/mojo/edk/system/broker_host.cc
@@ -29,8 +29,8 @@ BrokerHost::BrokerHost(base::ProcessHandle client_process,
base::MessageLoop::current()->AddDestructionObserver(this);
- channel_ = Channel::Create(
- this, std::move(platform_handle), base::ThreadTaskRunnerHandle::Get());
+ channel_ = Channel::Create(this, ConnectionParams(std::move(platform_handle)),
+ base::ThreadTaskRunnerHandle::Get());
channel_->Start();
}
« no previous file with comments | « mojo/edk/embedder/pending_process_connection.cc ('k') | mojo/edk/system/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698