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

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 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
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..7376f6920ba2b5b931ffab2a156576e442f14f36 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::ConnectionParams(std::move(server_handle)));
process_connection_.reset();
worker_process_ = std::move(worker_process);
« no previous file with comments | « remoting/host/win/unprivileged_process_delegate.cc ('k') | services/service_manager/runner/host/service_process_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698