chromium/components/autofill/core/browser/strike_databases/payments/test_strike_database.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace autofill