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

Unified Diff: remoting/host/daemon_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
« no previous file with comments | « no previous file | remoting/host/desktop_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/daemon_process.cc
diff --git a/remoting/host/daemon_process.cc b/remoting/host/daemon_process.cc
index 1d5fcd466126eebedea36d9a874a69a5982378f7..880d724830944b01b9618458c0f778b5cf631e97 100644
--- a/remoting/host/daemon_process.cc
+++ b/remoting/host/daemon_process.cc
@@ -15,6 +15,7 @@
#include "base/files/file_util.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
+#include "ipc/attachment_broker_privileged.h"
#include "net/base/net_util.h"
#include "remoting/base/auto_thread_task_runner.h"
#include "remoting/host/branding.h"
@@ -183,6 +184,12 @@ DaemonProcess::DaemonProcess(
stopped_callback_(stopped_callback),
weak_factory_(this) {
DCHECK(caller_task_runner->BelongsToCurrentThread());
+
+ // TODO(sergeyu): On OSX AttachmentBroker depends on base::PortProvider
+ // implementation. Add it here when this code is used on OSX.
+#if !defined(OS_MACOSX)
+ IPC::AttachmentBrokerPrivileged::CreateBrokerIfNeeded();
+#endif // !defined(OS_MACOSX)
}
void DaemonProcess::CreateDesktopSession(int terminal_id,
« no previous file with comments | « no previous file | remoting/host/desktop_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698