#include "components/autofill/core/browser/strike_databases/payments/test_strike_database.h"
#include "components/autofill/core/browser/proto/strike_data.pb.h"
#include "components/autofill/core/common/autofill_clock.h"
namespace autofill {
TestStrikeDatabase::TestStrikeDatabase() = default;
TestStrikeDatabase::~TestStrikeDatabase() = default;
void TestStrikeDatabase::GetProtoStrikes(
const std::string& key,
const StrikesCallback& outer_callback) { … }
void TestStrikeDatabase::ClearAllProtoStrikes(
const ClearStrikesCallback& outer_callback) { … }
void TestStrikeDatabase::ClearAllProtoStrikesForKey(
const std::string& key,
const ClearStrikesCallback& outer_callback) { … }
void TestStrikeDatabase::AddEntryWithNumStrikes(const std::string& key,
int num_strikes) { … }
int TestStrikeDatabase::GetStrikesForTesting(const std::string& key) { … }
}