[sql] Remove _HAS_EXCEPTIONS=0 from build info.
[chromium-blink-merge.git] / chrome / browser / browsing_data / passwords_counter.cc
blob30b0dd78638857647956a407cdd8ce2c74d5d16a
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 {
16 return pref_name_;
19 void PasswordsCounter::Count() {
20 // TODO(msramek): Count the passwords of |profile|
21 // and call |ReportResult| when finished.