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

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 compile 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
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..d749f87d81cd5ef4a79cad1140558cf9ffac474c 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, ConnectionParam(std::move(platform_handle)),
+ base::ThreadTaskRunnerHandle::Get());
channel_->Start();
}

Powered by Google App Engine
This is Rietveld 408576698