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

Side by Side Diff: components/password_manager/core/browser/test_password_store.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 12 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 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>
8
7 #include "base/thread_task_runner_handle.h" 9 #include "base/thread_task_runner_handle.h"
8 #include "components/autofill/core/common/password_form.h" 10 #include "components/autofill/core/common/password_form.h"
9 #include "components/password_manager/core/browser/statistics_table.h" 11 #include "components/password_manager/core/browser/statistics_table.h"
10 12
11 namespace password_manager { 13 namespace password_manager {
12 14
13 TestPasswordStore::TestPasswordStore() 15 TestPasswordStore::TestPasswordStore()
14 : PasswordStore(base::ThreadTaskRunnerHandle::Get(), 16 : PasswordStore(base::ThreadTaskRunnerHandle::Get(),
15 base::ThreadTaskRunnerHandle::Get()) { 17 base::ThreadTaskRunnerHandle::Get()) {
16 } 18 }
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 135
134 void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) { 136 void TestPasswordStore::RemoveSiteStatsImpl(const GURL& origin_domain) {
135 } 137 }
136 138
137 std::vector<scoped_ptr<InteractionsStats>> TestPasswordStore::GetSiteStatsImpl( 139 std::vector<scoped_ptr<InteractionsStats>> TestPasswordStore::GetSiteStatsImpl(
138 const GURL& origin_domain) { 140 const GURL& origin_domain) {
139 return std::vector<scoped_ptr<InteractionsStats>>(); 141 return std::vector<scoped_ptr<InteractionsStats>>();
140 } 142 }
141 143
142 } // namespace password_manager 144 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698