chromium/chrome/browser/ui/lens/search_bubble_ui.h

// Copyright 2024 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_LENS_SEARCH_BUBBLE_UI_H_
#define CHROME_BROWSER_UI_LENS_SEARCH_BUBBLE_UI_H_

#include "chrome/browser/lens/core/mojom/search_bubble.mojom.h"
#include "chrome/browser/ui/webui/top_chrome/top_chrome_web_ui_controller.h"
#include "chrome/browser/ui/webui/top_chrome/top_chrome_webui_config.h"
#include "content/public/browser/webui_config.h"
#include "ui/webui/resources/cr_components/color_change_listener/color_change_listener.mojom.h"
#include "ui/webui/resources/cr_components/searchbox/searchbox.mojom-forward.h"

namespace ui {
class ColorChangeHandler;
}

namespace lens {

class SearchBubblePageHandler;

class SearchBubbleUI : public TopChromeWebUIController,
                       public lens::mojom::SearchBubblePageHandlerFactory {};

// WebUIConfig for chrome://lens-search-bubble.
class SearchBubbleUIConfig
    : public DefaultTopChromeWebUIConfig<SearchBubbleUI> {};

}  // namespace lens

#endif  // CHROME_BROWSER_UI_LENS_SEARCH_BUBBLE_UI_H_