#include "components/browsing_data/core/browsing_data_utils.h"
#include <string>
#include <vector>
#include "base/functional/callback_helpers.h"
#include "base/memory/scoped_refptr.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/task_environment.h"
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
#include "components/browsing_data/core/counters/autofill_counter.h"
#include "components/browsing_data/core/counters/history_counter.h"
#include "components/browsing_data/core/counters/passwords_counter.h"
#include "components/browsing_data/core/pref_names.h"
#include "components/password_manager/core/browser/password_store/test_password_store.h"
#include "components/prefs/pref_service.h"
#include "components/sync_preferences/testing_pref_service_syncable.h"
#include "components/webdata/common/web_database_service.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace browsing_data {
namespace {
class FakeWebDataService : public autofill::AutofillWebDataService { … };
}
class BrowsingDataUtilsTest : public testing::Test { … };
TEST_F(BrowsingDataUtilsTest, AutofillCounterResult) { … }
TEST_F(BrowsingDataUtilsTest, PasswordsCounterResult) { … }
TEST_F(BrowsingDataUtilsTest, HistoryCounterResult) { … }
}