1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_BROWSING_DATA_CORE_COUNTERS_PASSWORDS_COUNTER_H_
#define COMPONENTS_BROWSING_DATA_CORE_COUNTERS_PASSWORDS_COUNTER_H_
#include <memory>
#include <string>
#include <vector>
#include "base/memory/weak_ptr.h"
#include "components/browsing_data/core/counters/browsing_data_counter.h"
#include "components/browsing_data/core/counters/sync_tracker.h"
#include "components/password_manager/core/browser/password_store/password_store_consumer.h"
class PrefService;
namespace password_manager {
class PasswordStoreInterface;
}
namespace browsing_data {
class PasswordStoreFetcher;
class PasswordsCounter : public browsing_data::BrowsingDataCounter {
public:
// A subclass of SyncResult that stores the result value, a boolean
// representing whether the datatype is synced, and a vector of example
// domains where credentials would be deleted.
class PasswordsResult : public SyncResult {
public:
PasswordsResult(const BrowsingDataCounter* source,
ResultInt profile_passwords,
ResultInt account_passwords,
bool sync_enabled,
std::vector<std::string> domain_examples,
std::vector<std::string> account_domain_examples);
PasswordsResult(const PasswordsResult&) = delete;
PasswordsResult& operator=(const PasswordsResult&) = delete;
~PasswordsResult() override;
ResultInt account_passwords() const { return account_passwords_; }
const std::vector<std::string>& domain_examples() const {
return domain_examples_;
}
const std::vector<std::string>& account_domain_examples() const {
return account_domain_examples_;
}
private:
ResultInt account_passwords_ = 0;
std::vector<std::string> domain_examples_;
std::vector<std::string> account_domain_examples_;
};
PasswordsCounter(
scoped_refptr<password_manager::PasswordStoreInterface> profile_store,
scoped_refptr<password_manager::PasswordStoreInterface> account_store,
PrefService* pref_service,
syncer::SyncService* sync_service);
~PasswordsCounter() override;
const char* GetPrefName() const override;
protected:
virtual void OnPasswordsFetchDone();
virtual std::unique_ptr<PasswordsResult> MakeResult();
void Count() override;
bool is_sync_active() { return sync_tracker_.IsSyncActive(); }
int num_passwords();
int num_account_passwords();
const std::vector<std::string>& domain_examples();
const std::vector<std::string>& account_domain_examples();
private:
void OnInitialized() override;
void OnFetchDone();
base::CancelableTaskTracker cancelable_task_tracker_;
std::unique_ptr<PasswordStoreFetcher> profile_store_fetcher_;
std::unique_ptr<PasswordStoreFetcher> account_store_fetcher_;
SyncTracker sync_tracker_;
int remaining_tasks_ = 0;
const raw_ptr<PrefService> pref_service_;
base::WeakPtrFactory<PasswordsCounter> weak_ptr_factory_{this};
};
} // namespace browsing_data
#endif // COMPONENTS_BROWSING_DATA_CORE_COUNTERS_PASSWORDS_COUNTER_H_
|