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

Unified Diff: remoting/host/win/wts_session_process_delegate.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: remoting/host/win/wts_session_process_delegate.cc
diff --git a/remoting/host/win/wts_session_process_delegate.cc b/remoting/host/win/wts_session_process_delegate.cc
index c665a59c4571a3ce7ecce4adc4a9a623fe2d7d36..067dd85227106e4f43befc24808fa52e509e9b0e 100644
--- a/remoting/host/win/wts_session_process_delegate.cc
+++ b/remoting/host/win/wts_session_process_delegate.cc
@@ -555,7 +555,9 @@ void WtsSessionProcessDelegate::Core::ReportProcessLaunched(
DCHECK(caller_task_runner_->BelongsToCurrentThread());
DCHECK(!worker_process_.IsValid());
- process_connection_->Connect(worker_process.Get(), std::move(server_handle));
+ process_connection_->Connect(
+ worker_process.Get(),
+ mojo::edk::ConnectionParam(std::move(server_handle)));
process_connection_.reset();
worker_process_ = std::move(worker_process);

Powered by Google App Engine
This is Rietveld 408576698