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

Unified Diff: remoting/host/win/unprivileged_process_delegate.h

Issue 196413016: Move CommandLine to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « remoting/host/win/launch_process_with_token.h ('k') | remoting/host/win/wts_session_process_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/unprivileged_process_delegate.h
diff --git a/remoting/host/win/unprivileged_process_delegate.h b/remoting/host/win/unprivileged_process_delegate.h
index 230da6ebe36ad81a5e7b0212547938601813af4c..435958c6c730ae8ff48c0cbe039c7016ddb890b3 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.
« no previous file with comments | « remoting/host/win/launch_process_with_token.h ('k') | remoting/host/win/wts_session_process_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698