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

Unified Diff: components/infobars/core/infobar_manager.cc

Issue 774933004: Prefix CommandLine usage with base namespace (Part 9: components) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: components/infobars/core/infobar_manager.cc
diff --git a/components/infobars/core/infobar_manager.cc b/components/infobars/core/infobar_manager.cc
index ed26603dddf0f7e28fb8eecb777fd5c2b2c9ef5d..c93f05efacb446f8d33ca612cd416f8d79431af3 100644
--- a/components/infobars/core/infobar_manager.cc
+++ b/components/infobars/core/infobar_manager.cc
@@ -101,7 +101,8 @@ void InfoBarManager::RemoveObserver(Observer* obs) {
InfoBarManager::InfoBarManager()
: infobars_enabled_(true) {
- if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDisableInfoBars))
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kDisableInfoBars))
infobars_enabled_ = false;
}
« no previous file with comments | « components/google/core/browser/google_util_unittest.cc ('k') | components/invalidation/invalidation_service_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698