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

Unified Diff: remoting/host/daemon_process_win.cc

Issue 12544020: Remote RDP sessions, rather than the console, if curtain-mode is configured. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/daemon_process_win.cc
diff --git a/remoting/host/daemon_process_win.cc b/remoting/host/daemon_process_win.cc
index 6c812004f2bf9683f2a46d5fedbb7b8b5d7c3c2a..17f99d82412aeca277d479be315bdddc038b9620 100644
--- a/remoting/host/daemon_process_win.cc
+++ b/remoting/host/daemon_process_win.cc
@@ -24,7 +24,6 @@
#include "remoting/host/host_exit_codes.h"
#include "remoting/host/host_main.h"
#include "remoting/host/ipc_constants.h"
-#include "remoting/host/win/host_service.h"
#include "remoting/host/win/launch_process_with_token.h"
#include "remoting/host/win/unprivileged_process_delegate.h"
#include "remoting/host/win/worker_process_launcher.h"
@@ -148,9 +147,8 @@ scoped_ptr<DesktopSession> DaemonProcessWin::DoCreateDesktopSession(
bool virtual_terminal) {
DCHECK(caller_task_runner()->BelongsToCurrentThread());
- return scoped_ptr<DesktopSession>(new DesktopSessionWin(
- caller_task_runner(), io_task_runner(), this, terminal_id,
- params, virtual_terminal, HostService::GetInstance()));
+ return CreateDesktopSessionWin(caller_task_runner(), io_task_runner(), this,
+ terminal_id, params, virtual_terminal);
}
void DaemonProcessWin::LaunchNetworkProcess() {

Powered by Google App Engine
This is Rietveld 408576698