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

Side by Side Diff: chrome/browser/browsing_data/passwords_counter.cc

Issue 2136373003: Move browsing data deletion prefs to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comment 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 (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/browser/profiles/profile.h" 7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/common/pref_names.h" 8 #include "components/browsing_data/pref_names.h"
9 #include "components/password_manager/core/browser/password_store.h" 9 #include "components/password_manager/core/browser/password_store.h"
10 10
11 PasswordsCounter::PasswordsCounter(Profile* profile) 11 PasswordsCounter::PasswordsCounter(Profile* profile)
12 : BrowsingDataCounter(prefs::kDeletePasswords), profile_(profile) {} 12 : BrowsingDataCounter(browsing_data::prefs::kDeletePasswords),
13 profile_(profile) {}
13 14
14 PasswordsCounter::~PasswordsCounter() { 15 PasswordsCounter::~PasswordsCounter() {
15 store_->RemoveObserver(this); 16 store_->RemoveObserver(this);
16 } 17 }
17 18
18 void PasswordsCounter::OnInitialized() { 19 void PasswordsCounter::OnInitialized() {
19 store_ = PasswordStoreFactory::GetForProfile( 20 store_ = PasswordStoreFactory::GetForProfile(
20 profile_, ServiceAccessType::EXPLICIT_ACCESS); 21 profile_, ServiceAccessType::EXPLICIT_ACCESS);
21 DCHECK(store_); 22 DCHECK(store_);
22 store_->AddObserver(this); 23 store_->AddObserver(this);
(...skipping 16 matching lines...) Expand all
39 results.end(), 40 results.end(),
40 [start](const autofill::PasswordForm* form) { 41 [start](const autofill::PasswordForm* form) {
41 return form->date_created >= start; 42 return form->date_created >= start;
42 })); 43 }));
43 } 44 }
44 45
45 void PasswordsCounter::OnLoginsChanged( 46 void PasswordsCounter::OnLoginsChanged(
46 const password_manager::PasswordStoreChangeList& changes) { 47 const password_manager::PasswordStoreChangeList& changes) {
47 Restart(); 48 Restart();
48 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698