chromium/chrome/browser/ui/webui/discards/site_data_provider_impl.h

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

#ifndef CHROME_BROWSER_UI_WEBUI_DISCARDS_SITE_DATA_PROVIDER_IMPL_H_
#define CHROME_BROWSER_UI_WEBUI_DISCARDS_SITE_DATA_PROVIDER_IMPL_H_

#include <memory>

#include "base/sequence_checker.h"
#include "chrome/browser/ui/webui/discards/site_data.mojom.h"
#include "components/performance_manager/public/graph/graph.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"

namespace performance_manager {
class Graph;
class SiteDataReader;
}  // namespace performance_manager

class SiteDataProviderImpl : public discards::mojom::SiteDataProvider,
                             public performance_manager::GraphOwnedDefaultImpl {};

#endif  // CHROME_BROWSER_UI_WEBUI_DISCARDS_SITE_DATA_PROVIDER_IMPL_H_