mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-12 09:37:37 +01:00
a12c2ab3e1
The PDF loading documentation in extension_system.cc has be updated to describe the new code paths. To support delivery of input events to the mime handler renderer process it is now necessary to route events via the correct RWHV interface. For Aura-based platforms (Windows/Linux) this means RWHVAura::On*Event and for macOS this means RWHVMac::RouteOrProcess*Event. Since Aura uses UI event types these have become the source of truth on Aura-based platforms with conversion to Web event types when needed (primarily for OSR). This change also adds a timeout for CefProcessHostMsg_GetNewBrowserInfo to avoid a hung renderer process if the guest WebContents route is not registered via CefMimeHandlerViewGuestDelegate::OnGuestDetached as expected prior to CefBrowserInfoManager::OnGetNewBrowserInfo being called. This timeout can be disabled for testing purposes by passing the `--disable-new-browser-info-timeout` command-line flag. The `--disable-features=MimeHandlerViewInCrossProcessFrame` command-line flag can be used for a limited time to restore the previous implementation based on BrowserPlugin. That implementation will be deleted starting with the 3897 branch update. Known issues: - ExecuteJavaScript calls on the frame hosting the PDF extension will not be routed to the mime handler renderer process. - The PDF extension will not load successfully if blocked by ChromePluginPlaceholder and then manually continued via the "Run this plugin" context menu option (see https://crbug.com/533069#c41).
79 lines
2.9 KiB
C++
79 lines
2.9 KiB
C++
// Copyright 2015 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_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_H_
|
|
#define CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_H_
|
|
|
|
#include "libcef/browser/browser_platform_delegate.h"
|
|
|
|
// Base implementation of native browser functionality.
|
|
class CefBrowserPlatformDelegateNative : public CefBrowserPlatformDelegate {
|
|
public:
|
|
// Used by the windowless implementation to override specific functionality
|
|
// when delegating to the native implementation.
|
|
class WindowlessHandler {
|
|
public:
|
|
// Returns the parent window handle.
|
|
virtual CefWindowHandle GetParentWindowHandle() const = 0;
|
|
|
|
// Convert from view coordinates to screen coordinates.
|
|
virtual gfx::Point GetParentScreenPoint(const gfx::Point& view) const = 0;
|
|
|
|
protected:
|
|
virtual ~WindowlessHandler() {}
|
|
};
|
|
|
|
// CefBrowserPlatformDelegate methods:
|
|
bool CanUseSharedTexture() const override;
|
|
bool CanUseExternalBeginFrame() const override;
|
|
SkColor GetBackgroundColor() const override;
|
|
void SynchronizeVisualProperties() override;
|
|
bool IsWindowless() const override;
|
|
bool IsViewsHosted() const override;
|
|
|
|
// Translate CEF events to Chromium/Blink Web events.
|
|
virtual content::NativeWebKeyboardEvent TranslateWebKeyEvent(
|
|
const CefKeyEvent& key_event) const = 0;
|
|
virtual blink::WebMouseEvent TranslateWebClickEvent(
|
|
const CefMouseEvent& mouse_event,
|
|
CefBrowserHost::MouseButtonType type,
|
|
bool mouseUp,
|
|
int clickCount) const = 0;
|
|
virtual blink::WebMouseEvent TranslateWebMoveEvent(
|
|
const CefMouseEvent& mouse_event,
|
|
bool mouseLeave) const = 0;
|
|
virtual blink::WebMouseWheelEvent TranslateWebWheelEvent(
|
|
const CefMouseEvent& mouse_event,
|
|
int deltaX,
|
|
int deltaY) const = 0;
|
|
|
|
const CefWindowInfo& window_info() const { return window_info_; }
|
|
|
|
protected:
|
|
// Delegates that can wrap a native delegate.
|
|
friend class CefBrowserPlatformDelegateBackground;
|
|
friend class CefBrowserPlatformDelegateOsr;
|
|
friend class CefBrowserPlatformDelegateViews;
|
|
|
|
CefBrowserPlatformDelegateNative(const CefWindowInfo& window_info,
|
|
SkColor background_color,
|
|
bool use_shared_texture,
|
|
bool use_external_begin_frame);
|
|
|
|
// Methods used by delegates that can wrap a native delegate.
|
|
void set_windowless_handler(WindowlessHandler* handler) {
|
|
windowless_handler_ = handler;
|
|
}
|
|
void set_browser(CefBrowserHostImpl* browser) { browser_ = browser; }
|
|
|
|
CefWindowInfo window_info_;
|
|
const SkColor background_color_;
|
|
const bool use_shared_texture_;
|
|
const bool use_external_begin_frame_;
|
|
|
|
WindowlessHandler* windowless_handler_; // Not owned by this object.
|
|
};
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_H_
|