Index: remoting/host/daemon_process_win.cc |
diff --git a/remoting/host/daemon_process_win.cc b/remoting/host/daemon_process_win.cc |
index 2bc80479e8a54d7948914f083670df8d6f30c814..b360d88d0247c994e1d7173dc067c989947b75d4 100644 |
--- a/remoting/host/daemon_process_win.cc |
+++ b/remoting/host/daemon_process_win.cc |
@@ -214,11 +214,10 @@ void DaemonProcessWin::LaunchNetworkProcess() { |
return; |
} |
- scoped_ptr<CommandLine> target(new CommandLine(host_binary)); |
+ scoped_ptr<base::CommandLine> target(new base::CommandLine(host_binary)); |
target->AppendSwitchASCII(kProcessTypeSwitchName, kProcessTypeHost); |
- target->CopySwitchesFrom(*CommandLine::ForCurrentProcess(), |
- kCopiedSwitchNames, |
- arraysize(kCopiedSwitchNames)); |
+ target->CopySwitchesFrom(*base::CommandLine::ForCurrentProcess(), |
+ kCopiedSwitchNames, arraysize(kCopiedSwitchNames)); |
scoped_ptr<UnprivilegedProcessDelegate> delegate( |
new UnprivilegedProcessDelegate(io_task_runner(), target.Pass())); |