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
3 // found in the LICENSE file.
5 #include "chrome/browser/browsing_data/passwords_counter.h"
6 #include "chrome/common/pref_names.h"
8 PasswordsCounter::PasswordsCounter()
9 : pref_name_(prefs::kDeletePasswords
) {
12 PasswordsCounter::~PasswordsCounter() {
15 const std::string
& PasswordsCounter::GetPrefName() const {
19 void PasswordsCounter::Count() {
20 // TODO(msramek): Count the passwords of |profile|
21 // and call |ReportResult| when finished.