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

Unified Diff: chrome/browser/ui/app_list/app_list_service_impl.cc

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months 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 33f2799eb063a493f6e03bbcf062a14f56fec980..548db52fd88332d1819603d0236ef5ceec28264c 100644
--- a/chrome/browser/ui/app_list/app_list_service_impl.cc
+++ b/chrome/browser/ui/app_list/app_list_service_impl.cc
@@ -280,9 +280,10 @@ AppListServiceImpl::AppListServiceImpl()
profile_store_->AddProfileObserver(this);
}
-AppListServiceImpl::AppListServiceImpl(const base::CommandLine& command_line,
- PrefService* local_state,
- scoped_ptr<ProfileStore> profile_store)
+AppListServiceImpl::AppListServiceImpl(
+ const base::CommandLine& command_line,
+ PrefService* local_state,
+ std::unique_ptr<ProfileStore> profile_store)
: profile_store_(std::move(profile_store)),
command_line_(command_line),
local_state_(local_state),
« no previous file with comments | « chrome/browser/ui/app_list/app_list_service_impl.h ('k') | chrome/browser/ui/app_list/app_list_service_impl_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698