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

Unified Diff: chrome/browser/ui/app_list/app_list_service_mac.mm

Issue 816403003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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: chrome/browser/ui/app_list/app_list_service_mac.mm
diff --git a/chrome/browser/ui/app_list/app_list_service_mac.mm b/chrome/browser/ui/app_list/app_list_service_mac.mm
index 2b262ace1f9bcd3c6b6e8d3603931c6813447022..bb486127f1c829477a5f64beaceed8af02a97c3f 100644
--- a/chrome/browser/ui/app_list/app_list_service_mac.mm
+++ b/chrome/browser/ui/app_list/app_list_service_mac.mm
@@ -371,7 +371,7 @@ void AppListServiceMac::Init(Profile* initial_profile) {
// OnShimLaunch(). Note that if --silent-launch is not also passed, the window
// will instead populate via StartupBrowserCreator::Launch(). Shim-initiated
// launches will always have --silent-launch.
- if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kShowAppList))
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kShowAppList))
ShowWindowNearDock();
}

Powered by Google App Engine
This is Rietveld 408576698