chromium/chrome/browser/ui/page_info/chrome_page_info_ui_delegate.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_PAGE_INFO_CHROME_PAGE_INFO_UI_DELEGATE_H_
#define CHROME_BROWSER_UI_PAGE_INFO_CHROME_PAGE_INFO_UI_DELEGATE_H_

#include <string>

#include "base/memory/raw_ptr.h"
#include "build/build_config.h"
#include "components/page_info/page_info_ui_delegate.h"
#include "url/gurl.h"

#if !BUILDFLAG(IS_ANDROID)
#include "components/page_info/core/proto/about_this_site_metadata.pb.h"
#endif

class Profile;

namespace content {
class WebContents;
}

namespace ui {
class Event;
}

class ChromePageInfoUiDelegate : public PageInfoUiDelegate {};

#endif  // CHROME_BROWSER_UI_PAGE_INFO_CHROME_PAGE_INFO_UI_DELEGATE_H_