chromium/components/performance_manager/persistence/site_data/site_data_store.h

// 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.

#ifndef COMPONENTS_PERFORMANCE_MANAGER_PERSISTENCE_SITE_DATA_SITE_DATA_STORE_H_
#define COMPONENTS_PERFORMANCE_MANAGER_PERSISTENCE_SITE_DATA_SITE_DATA_STORE_H_

#include <optional>
#include <vector>

#include "base/functional/callback_forward.h"
#include "components/performance_manager/persistence/site_data/site_data.pb.h"
#include "url/origin.h"

class SiteDataProto;

namespace performance_manager {

// Interface for an on-disk SiteData store.
class SiteDataStore {};

}  // namespace performance_manager

#endif  // COMPONENTS_PERFORMANCE_MANAGER_PERSISTENCE_SITE_DATA_SITE_DATA_STORE_H_