chromium/chrome/browser/ui/webui/browsing_topics/browsing_topics_internals_page_handler.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_WEBUI_BROWSING_TOPICS_BROWSING_TOPICS_INTERNALS_PAGE_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_BROWSING_TOPICS_BROWSING_TOPICS_INTERNALS_PAGE_HANDLER_H_

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "components/browsing_topics/annotator.h"
#include "components/browsing_topics/mojom/browsing_topics_internals.mojom.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "ui/webui/mojo_web_ui_controller.h"

class Profile;

// Implements the mojo endpoint for the WebUI which proxies calls to the
// BrowsingTopicsService to get information about relevant topics state. Owned
// by BrowsingTopicsInternalsUI.
class BrowsingTopicsInternalsPageHandler
    : public browsing_topics::mojom::PageHandler {};

#endif  // CHROME_BROWSER_UI_WEBUI_BROWSING_TOPICS_BROWSING_TOPICS_INTERNALS_PAGE_HANDLER_H_