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

Unified Diff: chrome/browser/service_process/service_process_control.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 | « chrome/browser/profiles/profile_shortcut_manager_win.h ('k') | chrome/browser/shell_integration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/service_process/service_process_control.h
diff --git a/chrome/browser/service_process/service_process_control.h b/chrome/browser/service_process/service_process_control.h
index 2e331452d434d55cfe417f75f5800ddd6fd87c7f..eedd4a3fd074b2cb328d144fb396be6c376db85b 100644
--- a/chrome/browser/service_process/service_process_control.h
+++ b/chrome/browser/service_process/service_process_control.h
@@ -23,7 +23,9 @@
#include "ipc/ipc_listener.h"
#include "ipc/ipc_sender.h"
+namespace base {
class CommandLine;
+}
namespace cloud_print {
struct CloudPrintProxyInfo;
@@ -132,7 +134,7 @@ class ServiceProcessControl : public IPC::Sender,
class Launcher
: public base::RefCountedThreadSafe<ServiceProcessControl::Launcher> {
public:
- Launcher(ServiceProcessControl* process, CommandLine* cmd_line);
+ Launcher(ServiceProcessControl* process, base::CommandLine* cmd_line);
// Execute the command line to start the process asynchronously. After the
// command is executed |task| is called with the process handle on the UI
// thread.
@@ -152,7 +154,7 @@ class ServiceProcessControl : public IPC::Sender,
void Notify();
void CloseProcessHandle();
ServiceProcessControl* process_;
- scoped_ptr<CommandLine> cmd_line_;
+ scoped_ptr<base::CommandLine> cmd_line_;
base::Closure notify_task_;
bool launched_;
uint32 retry_count_;
« no previous file with comments | « chrome/browser/profiles/profile_shortcut_manager_win.h ('k') | chrome/browser/shell_integration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698