| 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()),
|
|
|