chromium/chrome/browser/ui/webui/hats/hats_ui.h

// Copyright 2023 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_HATS_HATS_UI_H_
#define CHROME_BROWSER_UI_WEBUI_HATS_HATS_UI_H_

#include "chrome/browser/ui/webui/hats/hats.mojom.h"
#include "chrome/browser/ui/webui/hats/hats_page_handler.h"
#include "content/public/browser/webui_config.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 "ui/webui/untrusted_web_ui_controller.h"

class HatsUI;

// The configuration for the chrome-untrusted://hats page.
class HatsUIConfig : public content::DefaultWebUIConfig<HatsUI> {};

class HatsPageHandler;

class HatsUI : public ui::UntrustedWebUIController,
               public hats::mojom::PageHandlerFactory {};

#endif  // CHROME_BROWSER_UI_WEBUI_HATS_HATS_UI_H_