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

Unified Diff: components/password_manager/core/browser/test_password_store.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/test_password_store.cc
diff --git a/components/password_manager/core/browser/test_password_store.cc b/components/password_manager/core/browser/test_password_store.cc
index f65ed1cefafa0f77a1429266b928397e402c3629..afcd8c2af5f0f5c1a0aadb87b036711b83e862c2 100644
--- a/components/password_manager/core/browser/test_password_store.cc
+++ b/components/password_manager/core/browser/test_password_store.cc
@@ -152,9 +152,9 @@ void TestPasswordStore::AddSiteStatsImpl(const InteractionsStats& stats) {
void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) {
}
-std::vector<scoped_ptr<InteractionsStats>> TestPasswordStore::GetSiteStatsImpl(
- const GURL& origin_domain) {
- return std::vector<scoped_ptr<InteractionsStats>>();
+std::vector<std::unique_ptr<InteractionsStats>>
+TestPasswordStore::GetSiteStatsImpl(const GURL& origin_domain) {
+ return std::vector<std::unique_ptr<InteractionsStats>>();
}
} // namespace password_manager

Powered by Google App Engine
This is Rietveld 408576698