chromium/chrome/browser/ui/views/page_info/about_this_site_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_PAGE_INFO_ABOUT_THIS_SITE_SIDE_PANEL_COORDINATOR_H_
#define CHROME_BROWSER_UI_VIEWS_PAGE_INFO_ABOUT_THIS_SITE_SIDE_PANEL_COORDINATOR_H_

#include <memory>

#include "base/memory/weak_ptr.h"
#include "content/public/browser/page_navigator.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"

class BrowserView;
class AboutThisSiteSidePanelView;
class SidePanelUI;

namespace views {
class View;
} // namespace views

// AboutThisSideSidePanelCoordinator handles the creation and registration of
// the AboutThisSidePanelView.
class AboutThisSideSidePanelCoordinator
    : public content::WebContentsUserData<AboutThisSideSidePanelCoordinator>,
      public content::WebContentsObserver {};

#endif // CHROME_BROWSER_UI_VIEWS_PAGE_INFO_ABOUT_THIS_SITE_SIDE_PANEL_COORDINATOR_H_