| 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
|
|
|