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

Unified Diff: chrome/browser/extensions/chrome_process_manager_delegate.cc

Issue 819133004: 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/extensions/chrome_process_manager_delegate.cc
diff --git a/chrome/browser/extensions/chrome_process_manager_delegate.cc b/chrome/browser/extensions/chrome_process_manager_delegate.cc
index a155b77b81192fc6f068cf8021fcbad5edc65ac7..df440fb5ae7893a67e3b9dafc63a36f39b484a93 100644
--- a/chrome/browser/extensions/chrome_process_manager_delegate.cc
+++ b/chrome/browser/extensions/chrome_process_manager_delegate.cc
@@ -62,7 +62,8 @@ bool ChromeProcessManagerDelegate::DeferCreatingStartupBackgroundHosts(
// started to show the app launcher. Background hosts will be loaded later
// via NOTIFICATION_BROWSER_WINDOW_READY. http://crbug.com/178260
return chrome::GetTotalBrowserCountForProfile(profile) == 0 &&
- CommandLine::ForCurrentProcess()->HasSwitch(switches::kShowAppList);
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kShowAppList);
}
void ChromeProcessManagerDelegate::Observe(

Powered by Google App Engine
This is Rietveld 408576698