chromium/ui/webui/examples/browser/ui/web/browser.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 UI_WEBUI_EXAMPLES_BROWSER_UI_WEB_BROWSER_H_
#define UI_WEBUI_EXAMPLES_BROWSER_UI_WEB_BROWSER_H_

#include "content/public/browser/web_ui_controller.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "ui/webui/examples/browser/ui/web/browser.mojom.h"
#include "ui/webui/mojo_web_ui_controller.h"

namespace webui_examples {

class Browser : public ui::MojoWebUIController,
                public webui_examples::mojom::PageHandlerFactory {};

}  // namespace webui_examples

#endif  // UI_WEBUI_EXAMPLES_BROWSER_UI_WEB_BROWSER_H_