2021-05-14 18:58:55 +02:00
|
|
|
// Copyright 2021 The Chromium Embedded Framework Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_BROWSER_FRAME_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_BROWSER_FRAME_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "libcef/browser/frame_host_impl.h"
|
|
|
|
|
|
|
|
#include "cef/libcef/common/mojom/cef.mojom.h"
|
2021-07-23 18:40:13 +02:00
|
|
|
#include "content/public/browser/document_service_base.h"
|
2021-05-14 18:58:55 +02:00
|
|
|
#include "mojo/public/cpp/bindings/binder_map.h"
|
|
|
|
|
|
|
|
// Implementation of the BrowserFrame mojo interface.
|
|
|
|
// This is implemented separately from CefFrameHostImpl to better manage the
|
|
|
|
// association with the RenderFrameHost (which may be speculative, etc.), and so
|
|
|
|
// that messages are always routed to the most appropriate CefFrameHostImpl
|
2021-07-23 18:40:13 +02:00
|
|
|
// instance. Lifespan is tied to the RFH via DocumentServiceBase.
|
2021-05-14 18:58:55 +02:00
|
|
|
class CefBrowserFrame
|
2021-07-23 18:40:13 +02:00
|
|
|
: public content::DocumentServiceBase<cef::mojom::BrowserFrame> {
|
2021-05-14 18:58:55 +02:00
|
|
|
public:
|
|
|
|
CefBrowserFrame(content::RenderFrameHost* render_frame_host,
|
|
|
|
mojo::PendingReceiver<cef::mojom::BrowserFrame> receiver);
|
|
|
|
~CefBrowserFrame() override;
|
|
|
|
|
|
|
|
// Called from the ContentBrowserClient method of the same name.
|
|
|
|
static void RegisterBrowserInterfaceBindersForFrame(
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
mojo::BinderMapWithContext<content::RenderFrameHost*>* map);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// cef::mojom::BrowserFrame methods:
|
|
|
|
void SendMessage(const std::string& name, base::Value arguments) override;
|
|
|
|
void FrameAttached() override;
|
|
|
|
void DidFinishFrameLoad(const GURL& validated_url,
|
|
|
|
int32_t http_status_code) override;
|
|
|
|
void UpdateDraggableRegions(
|
2021-06-04 03:34:56 +02:00
|
|
|
absl::optional<std::vector<cef::mojom::DraggableRegionEntryPtr>> regions)
|
2021-05-14 18:58:55 +02:00
|
|
|
override;
|
|
|
|
|
2021-07-23 18:40:13 +02:00
|
|
|
// DocumentServiceBase methods:
|
2021-05-14 18:58:55 +02:00
|
|
|
bool ShouldCloseOnFinishNavigation() const override { return false; }
|
|
|
|
|
2021-05-19 02:45:05 +02:00
|
|
|
CefRefPtr<CefFrameHostImpl> GetFrameHost(
|
|
|
|
bool prefer_speculative = false) const;
|
2021-05-14 18:58:55 +02:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefBrowserFrame);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_BROWSER_FRAME_H_
|