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

Side by Side Diff: components/browsing_data/core/counters/passwords_counter.cc

Issue 2153863002: Move counters for passwords, history and autofill to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@separate_build_targets_in_components_bd
Patch Set: Fixed dependencies Created 4 years, 5 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 (c) 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/browsing_data/passwords_counter.h" 5 #include "components/browsing_data/core/counters/passwords_counter.h"
6 #include "chrome/browser/password_manager/password_store_factory.h" 6
7 #include "chrome/browser/profiles/profile.h"
8 #include "components/browsing_data/core/pref_names.h" 7 #include "components/browsing_data/core/pref_names.h"
9 #include "components/password_manager/core/browser/password_store.h" 8 #include "components/password_manager/core/browser/password_store.h"
10 9
11 PasswordsCounter::PasswordsCounter(Profile* profile) 10 namespace browsing_data {
12 : BrowsingDataCounter(browsing_data::prefs::kDeletePasswords), 11
13 profile_(profile) {} 12 PasswordsCounter::PasswordsCounter(
13 scoped_refptr<password_manager::PasswordStore> store)
14 : pref_name_(browsing_data::prefs::kDeletePasswords), store_(store) {}
14 15
15 PasswordsCounter::~PasswordsCounter() { 16 PasswordsCounter::~PasswordsCounter() {
16 store_->RemoveObserver(this); 17 store_->RemoveObserver(this);
17 } 18 }
18 19
19 void PasswordsCounter::OnInitialized() { 20 void PasswordsCounter::OnInitialized() {
20 store_ = PasswordStoreFactory::GetForProfile(
21 profile_, ServiceAccessType::EXPLICIT_ACCESS);
22 DCHECK(store_); 21 DCHECK(store_);
23 store_->AddObserver(this); 22 store_->AddObserver(this);
24 } 23 }
25 24
25 const std::string& PasswordsCounter::GetPrefName() const {
26 return pref_name_;
27 }
28
26 void PasswordsCounter::Count() { 29 void PasswordsCounter::Count() {
27 cancelable_task_tracker()->TryCancelAll(); 30 cancelable_task_tracker()->TryCancelAll();
28 // TODO(msramek): We don't actually need the logins themselves, just their 31 // TODO(msramek): We don't actually need the logins themselves, just their
29 // count. Consider implementing |PasswordStore::CountAutofillableLogins|. 32 // count. Consider implementing |PasswordStore::CountAutofillableLogins|.
30 // This custom request should also allow us to specify the time range, so that 33 // This custom request should also allow us to specify the time range, so that
31 // we can use it to filter the login creation date in the database. 34 // we can use it to filter the login creation date in the database.
32 store_->GetAutofillableLogins(this); 35 store_->GetAutofillableLogins(this);
33 } 36 }
34 37
35 void PasswordsCounter::OnGetPasswordStoreResults( 38 void PasswordsCounter::OnGetPasswordStoreResults(
36 ScopedVector<autofill::PasswordForm> results) { 39 ScopedVector<autofill::PasswordForm> results) {
37 base::Time start = GetPeriodStart(); 40 base::Time start = GetPeriodStart();
38 ReportResult(std::count_if( 41 ReportResult(std::count_if(results.begin(), results.end(),
39 results.begin(), 42 [start](const autofill::PasswordForm* form) {
40 results.end(), 43 return form->date_created >= start;
41 [start](const autofill::PasswordForm* form) { 44 }));
42 return form->date_created >= start;
43 }));
44 } 45 }
45 46
46 void PasswordsCounter::OnLoginsChanged( 47 void PasswordsCounter::OnLoginsChanged(
47 const password_manager::PasswordStoreChangeList& changes) { 48 const password_manager::PasswordStoreChangeList& changes) {
48 Restart(); 49 Restart();
49 } 50 }
51
52 } // namespace browsing_data
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698