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

Unified Diff: cloud_print/service/win/installer.cc

Issue 735053002: Prefix CommandLine usage with base namespace (Part 7: cloud_print/) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
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();
}
« no previous file with comments | « cloud_print/service/win/cloud_print_service_config.cc ('k') | cloud_print/service/win/service_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698