2017-08-04 00:55:19 +02:00
|
|
|
// Copyright 2017 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_VIEWS_BROWSER_PLATFORM_DELEGATE_BACKGROUND_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_VIEWS_BROWSER_PLATFORM_DELEGATE_BACKGROUND_H_
|
|
|
|
|
2020-07-04 20:21:34 +02:00
|
|
|
#include "libcef/browser/alloy/browser_platform_delegate_alloy.h"
|
2017-08-04 00:55:19 +02:00
|
|
|
#include "libcef/browser/native/browser_platform_delegate_native.h"
|
|
|
|
|
|
|
|
// Implementation of browser functionality for background script hosts.
|
|
|
|
class CefBrowserPlatformDelegateBackground
|
2020-07-04 20:21:34 +02:00
|
|
|
: public CefBrowserPlatformDelegateAlloy,
|
2017-08-04 00:55:19 +02:00
|
|
|
public CefBrowserPlatformDelegateNative::WindowlessHandler {
|
|
|
|
public:
|
|
|
|
// Platform-specific behaviors will be delegated to |native_delegate|.
|
|
|
|
CefBrowserPlatformDelegateBackground(
|
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate);
|
|
|
|
|
|
|
|
// CefBrowserPlatformDelegate methods:
|
|
|
|
bool CreateHostWindow() override;
|
|
|
|
void CloseHostWindow() override;
|
|
|
|
CefWindowHandle GetHostWindowHandle() const override;
|
|
|
|
SkColor GetBackgroundColor() const override;
|
2020-01-31 23:54:26 +01:00
|
|
|
void WasResized() override;
|
2020-01-23 22:58:01 +01:00
|
|
|
void SendKeyEvent(const CefKeyEvent& event) override;
|
|
|
|
void SendMouseClickEvent(const CefMouseEvent& event,
|
|
|
|
CefBrowserHost::MouseButtonType type,
|
|
|
|
bool mouseUp,
|
|
|
|
int clickCount) override;
|
|
|
|
void SendMouseMoveEvent(const CefMouseEvent& event, bool mouseLeave) override;
|
|
|
|
void SendMouseWheelEvent(const CefMouseEvent& event,
|
|
|
|
int deltaX,
|
|
|
|
int deltaY) override;
|
2019-02-25 22:17:28 +01:00
|
|
|
void SendTouchEvent(const CefTouchEvent& event) override;
|
2021-09-27 09:50:07 +02:00
|
|
|
void SetFocus(bool setFocus) override;
|
2022-05-13 13:38:41 +02:00
|
|
|
gfx::Point GetScreenPoint(const gfx::Point& view,
|
|
|
|
bool want_dip_coords) const override;
|
2017-08-04 00:55:19 +02:00
|
|
|
void ViewText(const std::string& text) override;
|
2018-11-03 02:15:09 +01:00
|
|
|
bool HandleKeyboardEvent(
|
2017-08-04 00:55:19 +02:00
|
|
|
const content::NativeWebKeyboardEvent& event) override;
|
|
|
|
CefEventHandle GetEventHandle(
|
|
|
|
const content::NativeWebKeyboardEvent& event) const override;
|
|
|
|
std::unique_ptr<CefMenuRunner> CreateMenuRunner() override;
|
|
|
|
|
|
|
|
// CefBrowserPlatformDelegateNative::WindowlessHandler methods:
|
|
|
|
CefWindowHandle GetParentWindowHandle() const override;
|
2022-05-13 13:38:41 +02:00
|
|
|
gfx::Point GetParentScreenPoint(const gfx::Point& view,
|
|
|
|
bool want_dip_coords) const override;
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_VIEWS_BROWSER_PLATFORM_DELEGATE_BACKGROUND_H_
|