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

Unified Diff: remoting/host/daemon_process_win.cc

Issue 15077010: [Chromoting] Refactored worker process launching code and speeded up the desktop process launch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 7 years, 7 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_session_win.cc » ('j') | remoting/host/desktop_session_win.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/daemon_process_win.cc
diff --git a/remoting/host/daemon_process_win.cc b/remoting/host/daemon_process_win.cc
index d84783879d76fd63f0348d9da99267bc3d365868..e3f2b4d410da04a8b4b5a5235c5b0a9cacdaef8b 100644
--- a/remoting/host/daemon_process_win.cc
+++ b/remoting/host/daemon_process_win.cc
@@ -185,10 +185,8 @@ void DaemonProcessWin::LaunchNetworkProcess() {
arraysize(kCopiedSwitchNames));
scoped_ptr<UnprivilegedProcessDelegate> delegate(
- new UnprivilegedProcessDelegate(caller_task_runner(), io_task_runner(),
- target.Pass()));
- network_launcher_.reset(new WorkerProcessLauncher(
- caller_task_runner(), delegate.Pass(), this));
+ new UnprivilegedProcessDelegate(io_task_runner(), target.Pass()));
+ network_launcher_.reset(new WorkerProcessLauncher(delegate.Pass(), this));
}
scoped_ptr<DaemonProcess> DaemonProcess::Create(
« no previous file with comments | « no previous file | remoting/host/desktop_session_win.cc » ('j') | remoting/host/desktop_session_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698