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

Side by Side Diff: chrome/browser/password_manager/password_store_proxy_mac.cc

Issue 2695233004: Implement PasswordStore::GetAllStats (Closed)
Patch Set: Add Mac Implementations Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/password_manager/password_store_proxy_mac.h" 5 #include "chrome/browser/password_manager/password_store_proxy_mac.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/metrics/histogram_macros.h" 10 #include "base/metrics/histogram_macros.h"
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 void PasswordStoreProxyMac::AddSiteStatsImpl( 209 void PasswordStoreProxyMac::AddSiteStatsImpl(
210 const password_manager::InteractionsStats& stats) { 210 const password_manager::InteractionsStats& stats) {
211 GetBackend()->AddSiteStatsImpl(stats); 211 GetBackend()->AddSiteStatsImpl(stats);
212 } 212 }
213 213
214 void PasswordStoreProxyMac::RemoveSiteStatsImpl(const GURL& origin_domain) { 214 void PasswordStoreProxyMac::RemoveSiteStatsImpl(const GURL& origin_domain) {
215 GetBackend()->RemoveSiteStatsImpl(origin_domain); 215 GetBackend()->RemoveSiteStatsImpl(origin_domain);
216 } 216 }
217 217
218 std::vector<password_manager::InteractionsStats> 218 std::vector<password_manager::InteractionsStats>
219 PasswordStoreProxyMac::GetAllSiteStatsImpl() {
220 return GetBackend()->GetAllSiteStatsImpl();
221 }
222
223 std::vector<password_manager::InteractionsStats>
219 PasswordStoreProxyMac::GetSiteStatsImpl(const GURL& origin_domain) { 224 PasswordStoreProxyMac::GetSiteStatsImpl(const GURL& origin_domain) {
220 return GetBackend()->GetSiteStatsImpl(origin_domain); 225 return GetBackend()->GetSiteStatsImpl(origin_domain);
221 } 226 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698