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
|
// 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_GLIC_HOST_GLIC_PAGE_HANDLER_H_
#define CHROME_BROWSER_GLIC_HOST_GLIC_PAGE_HANDLER_H_
#include <vector>
#include "base/callback_list.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/glic/host/glic.mojom.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
namespace content {
class BrowserContext;
class RenderFrameHost;
class WebContents;
} // namespace content
namespace gfx {
class Size;
} // namespace gfx
namespace glic {
class GlicKeyedService;
class GlicWebClientHandler;
// Handles the Mojo requests coming from the Glic WebUI.
class GlicPageHandler : public glic::mojom::PageHandler {
public:
GlicPageHandler(content::WebContents* webui_contents,
mojo::PendingReceiver<glic::mojom::PageHandler> receiver,
mojo::PendingRemote<glic::mojom::Page> page);
GlicPageHandler(const GlicPageHandler&) = delete;
GlicPageHandler& operator=(const GlicPageHandler&) = delete;
~GlicPageHandler() override;
content::WebContents* webui_contents() { return webui_contents_; }
void NotifyWindowIntentToShow();
// Returns the main frame of the guest view that lives within this WebUI. May
// be null.
content::RenderFrameHost* GetGuestMainFrame();
// glic::mojom::PageHandler implementation.
void CreateWebClient(::mojo::PendingReceiver<glic::mojom::WebClientHandler>
web_client_receiver) override;
void PrepareForClient(base::OnceCallback<void(mojom::PrepareForClientResult)>
callback) override;
// Called whenever the webview main frame commits.
void WebviewCommitted(const GURL& origin) override;
void ClosePanel() override;
void SignInAndClosePanel() override;
void ResizeWidget(const gfx::Size& size,
base::TimeDelta duration,
ResizeWidgetCallback callback) override;
void EnableDragResize(bool enabled) override;
void WebUiStateChanged(glic::mojom::WebUiState new_state) override;
private:
void AllowedChanged();
GlicKeyedService* GetGlicService();
// There should at most one WebClientHandler at a time. A new one is created
// each time the webview loads a page.
std::unique_ptr<GlicWebClientHandler> web_client_handler_;
raw_ptr<content::WebContents> webui_contents_;
raw_ptr<content::BrowserContext> browser_context_;
mojo::Receiver<glic::mojom::PageHandler> receiver_;
mojo::Remote<glic::mojom::Page> page_;
mojo::Remote<glic::mojom::WebClient> web_client_;
std::vector<base::CallbackListSubscription> subscriptions_;
base::WeakPtrFactory<GlicPageHandler> weak_ptr_factory_{this};
};
} // namespace glic
#endif // CHROME_BROWSER_GLIC_HOST_GLIC_PAGE_HANDLER_H_
|