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

Side by Side Diff: components/password_manager/core/browser/test_password_store.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
« no previous file with comments | « components/password_manager/core/browser/test_password_store.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/password_manager/core/browser/test_password_store.h" 5 #include "components/password_manager/core/browser/test_password_store.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/memory/ptr_util.h" 9 #include "base/memory/ptr_util.h"
10 #include "base/threading/thread_task_runner_handle.h" 10 #include "base/threading/thread_task_runner_handle.h"
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 } 159 }
160 return true; 160 return true;
161 } 161 }
162 162
163 void TestPasswordStore::AddSiteStatsImpl(const InteractionsStats& stats) { 163 void TestPasswordStore::AddSiteStatsImpl(const InteractionsStats& stats) {
164 } 164 }
165 165
166 void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) { 166 void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) {
167 } 167 }
168 168
169 std::vector<InteractionsStats> TestPasswordStore::GetAllSiteStatsImpl() {
170 return std::vector<InteractionsStats>();
171 }
172
169 std::vector<InteractionsStats> TestPasswordStore::GetSiteStatsImpl( 173 std::vector<InteractionsStats> TestPasswordStore::GetSiteStatsImpl(
170 const GURL& origin_domain) { 174 const GURL& origin_domain) {
171 return std::vector<InteractionsStats>(); 175 return std::vector<InteractionsStats>();
172 } 176 }
173 177
174 } // namespace password_manager 178 } // namespace password_manager
OLDNEW
« no previous file with comments | « components/password_manager/core/browser/test_password_store.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698