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
|
// 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 CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
#define CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/profiles/profile_statistics_common.h"
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/password_manager/core/browser/password_store/password_store_interface.h"
#include "device/fido/platform_credential_store.h"
class PrefService;
class ProfileStatisticsAggregator;
namespace autofill {
class EntityDataManager;
class PersonalDataManager;
} // namespace autofill
namespace bookmarks {
class BookmarkModel;
} // namespace bookmarks
namespace history {
class HistoryService;
} // namespace history
// Instances of ProfileStatistics should be created directly. Use
// ProfileStatisticsFactory instead.
class ProfileStatistics : public KeyedService {
public:
// Uses ProfileStatisticsFactory::BuildServiceInstanceForBrowserContext
// instead.
ProfileStatistics(
scoped_refptr<autofill::AutofillWebDataService> autofill_web_data_service,
autofill::PersonalDataManager* personal_data_manager,
const autofill::EntityDataManager* entity_data_manager,
bookmarks::BookmarkModel* bookmark_model,
history::HistoryService* history_service,
scoped_refptr<password_manager::PasswordStoreInterface>
profile_password_store,
PrefService* pref_service,
std::unique_ptr<device::fido::PlatformCredentialStore>
platform_credential_store);
~ProfileStatistics() override;
// Profile Statistics --------------------------------------------------------
// This function collects statistical information about |profile|, also
// returns the information via |callback| if |callback| is not null.
// Currently bookmarks, history, logins and autofill forms are counted. The
// callback function will probably be called more than once, so binding
// parameters with bind::Passed() is prohibited.
void GatherStatistics(profiles::ProfileStatisticsCallback callback);
private:
void DeregisterAggregator();
const scoped_refptr<autofill::AutofillWebDataService>
autofill_web_data_service_;
const raw_ptr<autofill::PersonalDataManager> personal_data_manager_;
const raw_ptr<const autofill::EntityDataManager> entity_data_manager_;
const raw_ptr<bookmarks::BookmarkModel> bookmark_model_;
const raw_ptr<history::HistoryService> history_service_;
const scoped_refptr<password_manager::PasswordStoreInterface>
profile_password_store_;
const raw_ptr<PrefService> pref_service_;
std::unique_ptr<device::fido::PlatformCredentialStore>
platform_credential_store_;
std::unique_ptr<ProfileStatisticsAggregator> aggregator_;
base::WeakPtrFactory<ProfileStatistics> weak_ptr_factory_{this};
};
#endif // CHROME_BROWSER_PROFILES_PROFILE_STATISTICS_H_
|