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

Unified Diff: remoting/host/desktop_process.cc

Issue 1634933007: remoting: Add AttachmentBroker for daemon and desktop processes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/desktop_process.cc
diff --git a/remoting/host/desktop_process.cc b/remoting/host/desktop_process.cc
index b74c94da5bd82688188504d6b8b199ada35ff776..2c400c4e0abcabf343c21de21f7942fa6ca71d73 100644
--- a/remoting/host/desktop_process.cc
+++ b/remoting/host/desktop_process.cc
@@ -17,6 +17,7 @@
#include "base/message_loop/message_loop.h"
#include "base/strings/string_util.h"
#include "build/build_config.h"
+#include "ipc/attachment_broker_unprivileged.h"
#include "ipc/ipc_channel_proxy.h"
#include "remoting/base/auto_thread.h"
#include "remoting/base/auto_thread_task_runner.h"
@@ -145,6 +146,11 @@ bool DesktopProcess::Start(
daemon_channel_ =
IPC::ChannelProxy::Create(daemon_channel_name_, IPC::Channel::MODE_CLIENT,
this, io_task_runner.get());
+ attachment_broker_ = IPC::AttachmentBrokerUnprivileged::CreateBroker();
+ if (attachment_broker_) {
+ attachment_broker_->DesignateBrokerCommunicationChannel(
+ daemon_channel_.get());
+ }
// Pass |desktop_pipe| to the daemon.
daemon_channel_->Send(

Powered by Google App Engine
This is Rietveld 408576698