1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
// 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_LENS_LENS_OVERLAY_UNTRUSTED_UI_H_
#define CHROME_BROWSER_UI_LENS_LENS_OVERLAY_UNTRUSTED_UI_H_
#include "base/memory/weak_ptr.h"
#include "chrome/browser/lens/core/mojom/lens.mojom.h"
#include "chrome/browser/lens/core/mojom/lens_ghost_loader.mojom.h"
#include "chrome/browser/ui/webui/top_chrome/top_chrome_webui_config.h"
#include "chrome/browser/ui/webui/top_chrome/untrusted_top_chrome_web_ui_controller.h"
#include "chrome/common/webui_url_constants.h"
#include "components/user_education/webui/help_bubble_handler.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_ui_data_source.h"
#include "ui/webui/resources/cr_components/color_change_listener/color_change_listener.mojom.h"
#include "ui/webui/resources/cr_components/help_bubble/help_bubble.mojom.h"
#include "ui/webui/resources/cr_components/searchbox/searchbox.mojom-forward.h"
class LensSearchController;
class LensOverlayController;
namespace ui {
class ColorChangeHandler;
} // namespace ui
namespace lens {
class LensOverlayUntrustedUI;
class LensOverlayUntrustedUIConfig
: public DefaultTopChromeWebUIConfig<LensOverlayUntrustedUI> {
public:
LensOverlayUntrustedUIConfig()
: DefaultTopChromeWebUIConfig(content::kChromeUIUntrustedScheme,
chrome::kChromeUILensOverlayHost) {}
};
// WebUI controller for the chrome-untrusted://lens-overlay page.
class LensOverlayUntrustedUI
: public UntrustedTopChromeWebUIController,
public lens::mojom::LensPageHandlerFactory,
public lens::mojom::LensGhostLoaderPageHandlerFactory,
public help_bubble::mojom::HelpBubbleHandlerFactory {
public:
explicit LensOverlayUntrustedUI(content::WebUI* web_ui);
LensOverlayUntrustedUI(const LensOverlayUntrustedUI&) = delete;
LensOverlayUntrustedUI& operator=(const LensOverlayUntrustedUI&) = delete;
~LensOverlayUntrustedUI() override;
// Instantiates the implementor of the mojom::PageHandlerFactory mojo
// interface passing the pending receiver that will be internally bound.
void BindInterface(
mojo::PendingReceiver<lens::mojom::LensPageHandlerFactory> receiver);
// Instantiates the implementor of the
// lens::mojom::LensGhostLoaderPageHandlerFactory mojo interface passing the
// pending receiver that will be internally bound.
void BindInterface(
mojo::PendingReceiver<lens::mojom::LensGhostLoaderPageHandlerFactory>
pending_receiver);
// Instantiates the implementor of the searchbox::mojom::PageHandler mojo
// interface passing the pending receiver that will be internally bound.
void BindInterface(
mojo::PendingReceiver<searchbox::mojom::PageHandler> receiver);
// Instantiates the implementor of the
// color_change_listener::mojom::PageHandler mojo interface passing the
// pending receiver that will be internally bound.
void BindInterface(
mojo::PendingReceiver<color_change_listener::mojom::PageHandler>
receiver);
// Instantiates the implementor of the help_bubble::mojom::HelpBubbleHandler
// mojo interface passing the pending receiver that will be internally bound.
void BindInterface(
mojo::PendingReceiver<help_bubble::mojom::HelpBubbleHandlerFactory>
pending_receiver);
static constexpr std::string_view GetWebUIName() {
return "LensOverlayUntrusted";
}
private:
LensSearchController& GetLensSearchController();
LensOverlayController& GetLensOverlayController();
// lens::mojom::LensPageHandlerFactory:
void CreatePageHandler(
mojo::PendingReceiver<lens::mojom::LensPageHandler> receiver,
mojo::PendingRemote<lens::mojom::LensPage> page) override;
// lens::mojom::LensGhostLoaderPageHandlerFactory:
void CreateGhostLoaderPage(
mojo::PendingRemote<lens::mojom::LensGhostLoaderPage> page) override;
// help_bubble::mojom::HelpBubbleHandlerFactory:
void CreateHelpBubbleHandler(
mojo::PendingRemote<help_bubble::mojom::HelpBubbleClient> client,
mojo::PendingReceiver<help_bubble::mojom::HelpBubbleHandler> handler)
override;
std::unique_ptr<ui::ColorChangeHandler> color_provider_handler_;
mojo::Receiver<lens::mojom::LensPageHandlerFactory>
lens_page_factory_receiver_{this};
mojo::Receiver<lens::mojom::LensGhostLoaderPageHandlerFactory>
lens_ghost_loader_page_factory_receiver_{this};
std::unique_ptr<user_education::HelpBubbleHandler> help_bubble_handler_;
mojo::Receiver<help_bubble::mojom::HelpBubbleHandlerFactory>
help_bubble_handler_factory_receiver_{this};
base::WeakPtrFactory<LensOverlayUntrustedUI> weak_factory_{this};
WEB_UI_CONTROLLER_TYPE_DECL();
};
} // namespace lens
#endif // CHROME_BROWSER_UI_LENS_LENS_OVERLAY_UNTRUSTED_UI_H_
|