chromium/components/performance_manager/test_support/persistence/test_site_data_reader.h

// Copyright 2023 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_PERFORMANCE_MANAGER_TEST_SUPPORT_PERSISTENCE_TEST_SITE_DATA_READER_H_
#define COMPONENTS_PERFORMANCE_MANAGER_TEST_SUPPORT_PERSISTENCE_TEST_SITE_DATA_READER_H_

#include <optional>

#include "base/functional/callback_forward.h"
#include "components/performance_manager/public/persistence/site_data/feature_usage.h"
#include "components/performance_manager/public/persistence/site_data/site_data_reader.h"

namespace performance_manager {

namespace testing {

// A simple SiteDataReader that returns fixed data.
class SimpleTestSiteDataReader : public SiteDataReader {};

}  // namespace testing

}  // namespace performance_manager

#endif  // COMPONENTS_PERFORMANCE_MANAGER_TEST_SUPPORT_PERSISTENCE_TEST_SITE_DATA_READER_H_