summaryrefslogtreecommitdiffstats
path: root/cloud_print
diff options
context:
space:
mode:
Diffstat (limited to 'cloud_print')
-rw-r--r--cloud_print/service/win/chrome_launcher.h2
-rw-r--r--cloud_print/service/win/service_controller.h2
-rw-r--r--cloud_print/service/win/service_utils.h8
3 files changed, 6 insertions, 6 deletions
diff --git a/cloud_print/service/win/chrome_launcher.h b/cloud_print/service/win/chrome_launcher.h
index 57c92e6..723bb77 100644
--- a/cloud_print/service/win/chrome_launcher.h
+++ b/cloud_print/service/win/chrome_launcher.h
@@ -13,8 +13,6 @@
#include "base/memory/scoped_ptr.h"
#include "base/threading/simple_thread.h"
-class CommandLine;
-
class ChromeLauncher : public base::DelegateSimpleThread::Delegate {
public:
explicit ChromeLauncher(const base::FilePath& user_data);
diff --git a/cloud_print/service/win/service_controller.h b/cloud_print/service/win/service_controller.h
index 3b1781e..6868fbd 100644
--- a/cloud_print/service/win/service_controller.h
+++ b/cloud_print/service/win/service_controller.h
@@ -69,7 +69,7 @@ class ServiceController {
State state_;
base::string16 user_;
bool is_logging_enabled_;
- CommandLine command_line_;
+ base::CommandLine command_line_;
};
#endif // CLOUD_PRINT_SERVICE_SERVICE_CONTROLLER_H_
diff --git a/cloud_print/service/win/service_utils.h b/cloud_print/service/win/service_utils.h
index d4faa8e..a509772 100644
--- a/cloud_print/service/win/service_utils.h
+++ b/cloud_print/service/win/service_utils.h
@@ -5,13 +5,15 @@
#ifndef CLOUD_PRINT_SERVICE_SERVICE_UTILS_H_
#define CLOUD_PRINT_SERVICE_SERVICE_UTILS_H_
-class CommandLine;
-
#include "base/strings/string16.h"
+namespace base {
+class CommandLine;
+}
+
base::string16 ReplaceLocalHostInName(const base::string16& user_name);
base::string16 GetCurrentUserName();
-void CopyChromeSwitchesFromCurrentProcess(CommandLine* destination);
+void CopyChromeSwitchesFromCurrentProcess(base::CommandLine* destination);
#endif // CLOUD_PRINT_SERVICE_SERVICE_UTILS_H_