// Copyright 2021 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_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_TEST_INMEMORY_STRIKE_DATABASE_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_TEST_INMEMORY_STRIKE_DATABASE_H_ #include <map> #include <memory> #include <string> #include <vector> #include "components/autofill/core/browser/strike_databases/strike_database_base.h" namespace autofill { class StrikeData; // Simplified implementation of the StrikeDatabase that only uses a local // cache for testing purposes. class TestInMemoryStrikeDatabase : public StrikeDatabaseBase { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_TEST_INMEMORY_STRIKE_DATABASE_H_