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

Unified Diff: chrome/browser/ui/app_list/app_list_service_impl.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/app_list_service_impl.cc
diff --git a/chrome/browser/ui/app_list/app_list_service_impl.cc b/chrome/browser/ui/app_list/app_list_service_impl.cc
index 90fa14292699f7500a62dc3be597055e612cc4cf..5e83b95d503ebf29b75407d29b75c924fc73d58c 100644
--- a/chrome/browser/ui/app_list/app_list_service_impl.cc
+++ b/chrome/browser/ui/app_list/app_list_service_impl.cc
@@ -229,14 +229,14 @@ void AppListServiceImpl::SendAppListStats() {
AppListServiceImpl::AppListServiceImpl()
: profile_store_(
new ProfileStoreImpl(g_browser_process->profile_manager())),
- command_line_(*CommandLine::ForCurrentProcess()),
+ command_line_(*base::CommandLine::ForCurrentProcess()),
local_state_(g_browser_process->local_state()),
profile_loader_(new ProfileLoader(profile_store_.get())),
weak_factory_(this) {
profile_store_->AddProfileObserver(this);
}
-AppListServiceImpl::AppListServiceImpl(const CommandLine& command_line,
+AppListServiceImpl::AppListServiceImpl(const base::CommandLine& command_line,
PrefService* local_state,
scoped_ptr<ProfileStore> profile_store)
: profile_store_(profile_store.Pass()),
« no previous file with comments | « chrome/browser/ui/app_list/app_list_service.cc ('k') | chrome/browser/ui/app_list/app_list_service_interactive_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698