OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "chrome/browser/browsing_data/passwords_counter.h" |
6 #include "chrome/browser/password_manager/password_store_factory.h" | 6 #include "chrome/browser/password_manager/password_store_factory.h" |
7 #include "chrome/common/pref_names.h" | 7 #include "chrome/common/pref_names.h" |
8 #include "components/password_manager/core/browser/password_store.h" | 8 #include "components/password_manager/core/browser/password_store.h" |
9 | 9 |
10 PasswordsCounter::PasswordsCounter() : pref_name_(prefs::kDeletePasswords) {} | 10 PasswordsCounter::PasswordsCounter(Profile* profile) |
| 11 : BrowsingDataCounter(prefs::kDeletePasswords), profile_(profile) {} |
11 | 12 |
12 PasswordsCounter::~PasswordsCounter() { | 13 PasswordsCounter::~PasswordsCounter() { |
13 if (store_) | 14 if (store_) |
14 store_->RemoveObserver(this); | 15 store_->RemoveObserver(this); |
15 } | 16 } |
16 | 17 |
17 void PasswordsCounter::OnInitialized() { | 18 void PasswordsCounter::OnInitialized() { |
18 store_ = PasswordStoreFactory::GetForProfile( | 19 store_ = PasswordStoreFactory::GetForProfile( |
19 GetProfile(), ServiceAccessType::EXPLICIT_ACCESS).get(); | 20 profile_, ServiceAccessType::EXPLICIT_ACCESS) |
| 21 .get(); |
20 if (store_) | 22 if (store_) |
21 store_->AddObserver(this); | 23 store_->AddObserver(this); |
22 else | 24 else |
23 LOG(ERROR) << "No password store! Cannot count passwords."; | 25 LOG(ERROR) << "No password store! Cannot count passwords."; |
24 } | 26 } |
25 | 27 |
26 const std::string& PasswordsCounter::GetPrefName() const { | |
27 return pref_name_; | |
28 } | |
29 | |
30 void PasswordsCounter::Count() { | 28 void PasswordsCounter::Count() { |
31 if (!store_) { | 29 if (!store_) { |
32 ReportResult(0); | 30 ReportResult(0); |
33 return; | 31 return; |
34 } | 32 } |
35 | 33 |
36 cancelable_task_tracker()->TryCancelAll(); | 34 cancelable_task_tracker()->TryCancelAll(); |
37 // TODO(msramek): We don't actually need the logins themselves, just their | 35 // TODO(msramek): We don't actually need the logins themselves, just their |
38 // count. Consider implementing |PasswordStore::CountAutofillableLogins|. | 36 // count. Consider implementing |PasswordStore::CountAutofillableLogins|. |
39 // This custom request should also allow us to specify the time range, so that | 37 // This custom request should also allow us to specify the time range, so that |
40 // we can use it to filter the login creation date in the database. | 38 // we can use it to filter the login creation date in the database. |
41 store_->GetAutofillableLogins(this); | 39 store_->GetAutofillableLogins(this); |
42 } | 40 } |
43 | 41 |
44 void PasswordsCounter::OnGetPasswordStoreResults( | 42 void PasswordsCounter::OnGetPasswordStoreResults( |
45 ScopedVector<autofill::PasswordForm> results) { | 43 ScopedVector<autofill::PasswordForm> results) { |
46 base::Time start = GetPeriodStart(); | 44 base::Time start = GetPeriodStart(); |
47 ReportResult(std::count_if( | 45 ReportResult(std::count_if( |
48 results.begin(), | 46 results.begin(), |
49 results.end(), | 47 results.end(), |
50 [start](const autofill::PasswordForm* form) { | 48 [start](const autofill::PasswordForm* form) { |
51 return form->date_created >= start; | 49 return form->date_created >= start; |
52 })); | 50 })); |
53 } | 51 } |
54 | 52 |
55 void PasswordsCounter::OnLoginsChanged( | 53 void PasswordsCounter::OnLoginsChanged( |
56 const password_manager::PasswordStoreChangeList& changes) { | 54 const password_manager::PasswordStoreChangeList& changes) { |
57 Restart(); | 55 Restart(); |
58 } | 56 } |
OLD | NEW |