summaryrefslogtreecommitdiffstats
path: root/remoting/host/win/unprivileged_process_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/win/unprivileged_process_delegate.h')
-rw-r--r--remoting/host/win/unprivileged_process_delegate.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/remoting/host/win/unprivileged_process_delegate.h b/remoting/host/win/unprivileged_process_delegate.h
index 230da6e..435958c 100644
--- a/remoting/host/win/unprivileged_process_delegate.h
+++ b/remoting/host/win/unprivileged_process_delegate.h
@@ -15,9 +15,8 @@
#include "ipc/ipc_listener.h"
#include "remoting/host/win/worker_process_launcher.h"
-class CommandLine;
-
namespace base {
+class CommandLine;
class SingleThreadTaskRunner;
} // namespace base
@@ -37,7 +36,7 @@ class UnprivilegedProcessDelegate
public:
UnprivilegedProcessDelegate(
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
- scoped_ptr<CommandLine> target_command);
+ scoped_ptr<base::CommandLine> target_command);
virtual ~UnprivilegedProcessDelegate();
// WorkerProcessLauncher::Delegate implementation.
@@ -59,7 +58,7 @@ class UnprivilegedProcessDelegate
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
// Command line of the launched process.
- scoped_ptr<CommandLine> target_command_;
+ scoped_ptr<base::CommandLine> target_command_;
// The server end of the IPC channel used to communicate to the worker
// process.