Index: cloud_print/service/win/installer.cc |
diff --git a/cloud_print/service/win/installer.cc b/cloud_print/service/win/installer.cc |
index e3ff6a48a803c2c5ffcf1f492d3eea6f08936b3b..312af6e2c3382421a5fd10897c41c601ea42766e 100644 |
--- a/cloud_print/service/win/installer.cc |
+++ b/cloud_print/service/win/installer.cc |
@@ -77,7 +77,8 @@ void DeleteShortcuts() { |
} // namespace |
HRESULT ProcessInstallerSwitches() { |
- const CommandLine& command_line(*CommandLine::ForCurrentProcess()); |
+ const base::CommandLine& command_line( |
+ *base::CommandLine::ForCurrentProcess()); |
if (command_line.HasSwitch(kInstallSwitch)) { |
base::FilePath old_location = |
@@ -139,6 +140,6 @@ int WINAPI WinMain(__in HINSTANCE hInstance, |
__in LPSTR lpCmdLine, |
__in int nCmdShow) { |
base::AtExitManager at_exit; |
- CommandLine::Init(0, NULL); |
+ base::CommandLine::Init(0, NULL); |
return ProcessInstallerSwitches(); |
} |