chromium/chrome/browser/ui/views/side_panel/history_clusters/history_clusters_side_panel_coordinator.h

// Copyright 2022 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_VIEWS_SIDE_PANEL_HISTORY_CLUSTERS_HISTORY_CLUSTERS_SIDE_PANEL_COORDINATOR_H_
#define CHROME_BROWSER_UI_VIEWS_SIDE_PANEL_HISTORY_CLUSTERS_HISTORY_CLUSTERS_SIDE_PANEL_COORDINATOR_H_

#include <memory>

#include "chrome/browser/ui/browser_user_data.h"
#include "components/prefs/pref_change_registrar.h"

class Browser;
class HistoryClustersSidePanelUI;
class SidePanelRegistry;

namespace views {
class View;
}

// HistoryClustersSidePanelCoordinator handles the creation and registration of
// the history clusters SidePanelEntry.
class HistoryClustersSidePanelCoordinator
    : public BrowserUserData<HistoryClustersSidePanelCoordinator> {};

#endif  // CHROME_BROWSER_UI_VIEWS_SIDE_PANEL_HISTORY_CLUSTERS_HISTORY_CLUSTERS_SIDE_PANEL_COORDINATOR_H_