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

Unified Diff: components/password_manager/core/browser/affiliated_match_helper.cc

Issue 1852093002: components/password_manager: scoped_ptr -> unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and revert an accidental .proto change Created 4 years, 9 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: components/password_manager/core/browser/affiliated_match_helper.cc
diff --git a/components/password_manager/core/browser/affiliated_match_helper.cc b/components/password_manager/core/browser/affiliated_match_helper.cc
index abf8c0c9b466a7555e8eb101ea8a00fcd622dc7c..2f82ee0dff8feb9d061dd955a66aa621030e4616 100644
--- a/components/password_manager/core/browser/affiliated_match_helper.cc
+++ b/components/password_manager/core/browser/affiliated_match_helper.cc
@@ -37,7 +37,7 @@ const int64_t AffiliatedMatchHelper::kInitializationDelayOnStartupInSeconds;
AffiliatedMatchHelper::AffiliatedMatchHelper(
PasswordStore* password_store,
- scoped_ptr<AffiliationService> affiliation_service)
+ std::unique_ptr<AffiliationService> affiliation_service)
: password_store_(password_store),
task_runner_for_waiting_(base::ThreadTaskRunnerHandle::Get()),
affiliation_service_(std::move(affiliation_service)),

Powered by Google App Engine
This is Rietveld 408576698