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

Unified Diff: chrome/browser/ui/app_list/search/search_controller_factory.cc

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/search/search_controller_factory.cc
diff --git a/chrome/browser/ui/app_list/search/search_controller_factory.cc b/chrome/browser/ui/app_list/search/search_controller_factory.cc
index 9e8523454aadebe19d18cd52a998ed3420575cee..b1746c00b8171b2566ea83d64942b7f7454c7cd7 100644
--- a/chrome/browser/ui/app_list/search/search_controller_factory.cc
+++ b/chrome/browser/ui/app_list/search/search_controller_factory.cc
@@ -55,8 +55,8 @@ scoped_ptr<SearchController> CreateSearchController(
controller->AddProvider(Mixer::WEBSTORE_GROUP,
scoped_ptr<SearchProvider>(
new WebstoreProvider(profile, list_controller)));
- if (!CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kDisablePeopleSearch)) {
+ if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kDisablePeopleSearch)) {
controller->AddProvider(Mixer::PEOPLE_GROUP,
scoped_ptr<SearchProvider>(
new PeopleProvider(profile, list_controller)));

Powered by Google App Engine
This is Rietveld 408576698