2016-07-30 19:35:14 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
2016-07-05 19:33:22 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2017-03-05 15:18:57 +00:00
|
|
|
#include <set>
|
2016-07-31 10:19:56 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-08-03 02:01:35 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2016-07-27 12:36:22 +00:00
|
|
|
|
2016-07-29 22:51:19 +00:00
|
|
|
#include "base/process/kill.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "base/threading/thread.h"
|
2016-07-25 13:55:00 +00:00
|
|
|
#include "base/time/time.h"
|
2017-12-18 09:40:36 +00:00
|
|
|
#include "components/viz/common/quads/compositor_frame.h"
|
2018-05-10 14:58:17 +00:00
|
|
|
#include "components/viz/common/surfaces/parent_local_surface_id_allocator.h"
|
2019-04-17 21:10:04 +00:00
|
|
|
#include "content/browser/renderer_host/delegated_frame_host.h" // nogncheck
|
|
|
|
#include "content/browser/renderer_host/input/mouse_wheel_phase_handler.h" // nogncheck
|
|
|
|
#include "content/browser/renderer_host/render_widget_host_impl.h" // nogncheck
|
|
|
|
#include "content/browser/renderer_host/render_widget_host_view_base.h" // nogncheck
|
|
|
|
#include "content/browser/web_contents/web_contents_view.h" // nogncheck
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/osr/osr_host_display_client.h"
|
|
|
|
#include "shell/browser/osr/osr_video_consumer.h"
|
|
|
|
#include "shell/browser/osr/osr_view_proxy.h"
|
2021-11-24 08:45:59 +00:00
|
|
|
#include "third_party/blink/public/mojom/widget/record_content_to_visible_time_request.mojom-forward.h"
|
2018-07-20 16:08:18 +00:00
|
|
|
#include "third_party/blink/public/platform/web_vector.h"
|
2018-04-18 01:44:10 +00:00
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "ui/base/ime/text_input_client.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "ui/compositor/compositor.h"
|
|
|
|
#include "ui/compositor/layer_delegate.h"
|
|
|
|
#include "ui/compositor/layer_owner.h"
|
2016-08-03 02:01:35 +00:00
|
|
|
#include "ui/gfx/geometry/point.h"
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
#include "components/viz/host/host_display_client.h"
|
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
#if defined(OS_WIN)
|
2016-07-05 19:33:22 +00:00
|
|
|
#include "ui/gfx/win/window_impl.h"
|
2016-07-18 14:16:23 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-11 13:14:01 +00:00
|
|
|
namespace content {
|
|
|
|
class CursorManager;
|
2021-07-02 00:51:37 +00:00
|
|
|
}
|
2018-10-11 13:14:01 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
class ElectronCopyFrameGenerator;
|
|
|
|
class ElectronBeginFrameTimer;
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
class ElectronDelegatedFrameHostClient;
|
2019-04-17 21:10:04 +00:00
|
|
|
|
2021-05-06 22:01:04 +00:00
|
|
|
typedef base::RepeatingCallback<void(const gfx::Rect&, const SkBitmap&)>
|
|
|
|
OnPaintCallback;
|
|
|
|
typedef base::RepeatingCallback<void(const gfx::Rect&)> OnPopupPaintCallback;
|
2016-09-06 08:24:37 +00:00
|
|
|
|
2018-10-05 18:03:35 +00:00
|
|
|
class OffScreenRenderWidgetHostView : public content::RenderWidgetHostViewBase,
|
|
|
|
public ui::CompositorDelegate,
|
|
|
|
public OffscreenViewProxyObserver {
|
2016-07-31 10:19:56 +00:00
|
|
|
public:
|
2016-08-03 04:46:34 +00:00
|
|
|
OffScreenRenderWidgetHostView(bool transparent,
|
2018-01-25 13:46:30 +00:00
|
|
|
bool painting,
|
|
|
|
int frame_rate,
|
2016-08-04 04:03:24 +00:00
|
|
|
const OnPaintCallback& callback,
|
2016-08-03 04:46:34 +00:00
|
|
|
content::RenderWidgetHost* render_widget_host,
|
2017-03-04 02:09:16 +00:00
|
|
|
OffScreenRenderWidgetHostView* parent_host_view,
|
2018-11-30 05:25:02 +00:00
|
|
|
gfx::Size initial_size);
|
2016-08-03 04:46:34 +00:00
|
|
|
~OffScreenRenderWidgetHostView() override;
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
OffScreenRenderWidgetHostView(const OffScreenRenderWidgetHostView&) = delete;
|
|
|
|
OffScreenRenderWidgetHostView& operator=(
|
|
|
|
const OffScreenRenderWidgetHostView&) = delete;
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// content::RenderWidgetHostView:
|
2016-07-31 10:19:56 +00:00
|
|
|
void InitAsChild(gfx::NativeView) override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void SetSize(const gfx::Size&) override;
|
|
|
|
void SetBounds(const gfx::Rect&) override;
|
2019-04-20 17:20:37 +00:00
|
|
|
gfx::NativeView GetNativeView(void) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
gfx::NativeViewAccessible GetNativeViewAccessible(void) override;
|
|
|
|
ui::TextInputClient* GetTextInputClient() override;
|
|
|
|
void Focus(void) override;
|
2019-04-20 17:20:37 +00:00
|
|
|
bool HasFocus(void) override;
|
2018-10-05 18:03:35 +00:00
|
|
|
uint32_t GetCaptureSequenceNumber() const override;
|
2019-04-20 17:20:37 +00:00
|
|
|
bool IsSurfaceAvailableForCopy(void) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
void Hide(void) override;
|
|
|
|
bool IsShowing(void) override;
|
2019-02-04 09:15:25 +00:00
|
|
|
void EnsureSurfaceSynchronizedForWebTest() override;
|
2019-04-20 17:20:37 +00:00
|
|
|
gfx::Rect GetViewBounds(void) override;
|
|
|
|
gfx::Size GetVisibleViewportSize() override;
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetInsets(const gfx::Insets&) override;
|
2016-08-01 11:27:39 +00:00
|
|
|
void SetBackgroundColor(SkColor color) override;
|
2021-06-03 08:05:04 +00:00
|
|
|
absl::optional<SkColor> GetBackgroundColor() override;
|
2018-10-05 18:03:35 +00:00
|
|
|
void UpdateBackgroundColor() override;
|
2020-03-14 20:54:14 +00:00
|
|
|
blink::mojom::PointerLockResult LockMouse(
|
|
|
|
bool request_unadjusted_movement) override;
|
|
|
|
blink::mojom::PointerLockResult ChangeMouseLock(
|
|
|
|
bool request_unadjusted_movement) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
void UnlockMouse(void) override;
|
2018-08-30 22:44:35 +00:00
|
|
|
void TakeFallbackContentFrom(content::RenderWidgetHostView* view) override;
|
2020-08-12 18:33:58 +00:00
|
|
|
#if defined(OS_MAC)
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetActive(bool active) override;
|
|
|
|
void ShowDefinitionForSelection() override;
|
|
|
|
void SpeakSelection() override;
|
2020-08-12 18:33:58 +00:00
|
|
|
void SetWindowFrameInScreen(const gfx::Rect& rect) override;
|
chore: bump chromium to 92.0.4475.0 (master) (#28462)
* chore: bump chromium in DEPS to 91.0.4464.0
* chore: rebuild chromium/dcheck.patch with import-patches -3
Mechanical only; no code changes
* chore: remove content_browser_main_loop.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2725153
The function being patched (BrowserMainLoop::MainMessageLoopRun()) no
longer exists.
NB: if removing this introduces regressions the likely fix will be to
add a similar patch for ShellBrowserMainParts::WillRunMainMessageLoop()
which has similar code and was added at the same time this was removed.
* chore: rebuild chromium/put_back_deleted_colors_for_autofill.patch with import-patches -3
Mechanical only; no code changes
* chore: rebuild chromium/disable_color_correct_rendering.patch with import-patches -3
Mechanical only; no code changes
* chore: rebuild chromium/eat_allow_disabling_blink_scheduler_throttling_per_renderview.patch with patch
Mechanical only; no code changes
* chore: rebuild chromium/gpu_notify_when_dxdiag_request_fails.patch with import-patches -3
Mechanical only; no code changes
* chore: rebuild chromium/ui_gtk_public_header.patch manually
no code changes
* chore: rebuild chromium/web_contents.patch with import-patches -3
Mechanical only; no code changes
* chore: remove v8/skip_global_registration_of_shared_arraybuffer_backing_stores.patch
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/2763874
This patch has been merged upstream
* chore: export patches
* chore: update add_trustedauthclient_to_urlloaderfactory.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2757969
Sync with removal of render_frame_id_
* chore: sync chromium/put_back_deleted_colors_for_autofill.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2785841
SkColorFromColorId() no longer takes theme, scheme args
* chore: sync chromium/put_back_deleted_colors_for_autofill.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2772143
Change new calls to GetDarkSchemeColor to fit our patched call signature
* chore: update add_trustedauthclient_to_urlloaderfactory.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2757969
Sync with removal of render_frame_id_ in our mojom
* chore: update chromium/frame_host_manager.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2740008
UrlInfo ctor now takes UrlInfo::OriginIsolationRequest instead of a bool
* chore: update chromium/revert_remove_contentrendererclient_shouldfork.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2755314
Upstream has removed `history_list_length_` which we were comparing to 0
to calculate our `is_initial_navigation` bool when calling ShouldFork().
ShouldFork() is ours and none of the code paths actually use that param,
so this commit removes it altogether.
* chore: update permissions_to_register
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2789074
Replace all uses of APIPermission::ID enum with Mojo type
* refactor: update return type of PreMainMessageLoopRun()
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2725153
Used to return void; now returns an int errorcode.
Note: 2725153 also has some nice doc updates about Browser's "stages"
* refactor: sync ElectronBrowserMainParts to MainParts changes
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2725153
RunMainMessageLoopParts has been replaced with WillRunMainMessageLoop
so `BrowserMainLoop::result_code_` is no longer available to us for our
exit_code_ pointer.
This variable held a dual role: (1) of course, hold the exit code, but
also (2) was a nullptr before the message loop was ready, indicating to
anyone calling SetExitCode() that we were still in startup and could
just exit() without any extra steps. exit_code_ still fulfills these two
roles but is now a base::Optional.
* chore: update ElectronBrowserMainParts::PreDefaultMainMessageLoopRun
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2725153
BrowserMainParts::BrowsePreDefaultMainMesssageLoopRun() has been
removed; move that work to the new WillRunMainMessageLoop().
* refactor: stop using CallbackList; it has been removed.
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2785973
* refactor: update use of threadpools.
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2773408
The upstream code is still in flux (e.g. reverts and re-lands) but the
tl;dr for this commit is (1) include thread_pool.h if you're using it
and (2) don't instantiate pools directly.
* refactor: remove routing_id from CreateLoaderAndStart
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2762858
NB: One logic branch in ProxyingURLLoaderFactory::CreateLoaderAndStart
calls std::make_unique<InProgressRequest>, which needs a routing_id.
This PR uses the member field `routing_id_` since there's no longer one
being passed into CreateLoaderAndStart.
* refactor: sync to upstream ParittionOptions churn
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2771318
PartitionOptions' enums have changed.
* refactor: update Manifest::Location usage
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2771320
tldr: s/Manifest::FOO/ManifestLocation::kFoo/
* chore: bump chromium in DEPS to 91.0.4465.0
* update patches
* refactor: update extensions::Manifest to upstream
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2771320
- extensions::Manifest::COMPONENT
+ extensions::mojom::ManifestLocation::kExternalComponent
* refactor: sync with upstream UrlInfo ctor changes
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2740008
UrlInfo ctor now takes UrlInfo::OriginIsolationRequest instead of a bool
* chore: update invocation of convert_protocol_to_json.py
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2792623
python3 is being used in parts of the upstream build, but the copy of
convert_protocol_to_json.py invoked in v8/third_party/inspector_protocol
is not python3-friendly. Node has a py2+3-friendly version of it in its
tools directory, so call it instead.
* chore: use extensions::mojom::APIPermissionID
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2791122
tldr:
- extensions::APIPermission::kFoo
+ extensions::mojom::APIPermissionID::kFoo
* chore: Remove support for TLS1.0/1.1 in SSLVersionMin policy
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2765737
Remove TLS v1.0 & 1.1 from our SSLProtocolVersionFromString() function.
This is the same change made upstream at
https://chromium-review.googlesource.com/c/chromium/src/+/2765737/8/chrome/browser/ssl/ssl_config_service_manager_pref.cc
* fixup! chore: update ElectronBrowserMainParts::PreDefaultMainMessageLoopRun
* chore: Use IDType for permission change subscriptions.
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2791431
tldr: {Subscribe,Unsubscribe}PermissionStatusChange's tag type used to
be an int; now it's the new SubscriptionId type (which is an IdType64).
* chore: sync PowerMonitor code to upstream refactor
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2752635
tldr: PowerMonitor has been split into PowerStateObserver,
PowerSuspendObserver, and PowerThermalObserver to reduce number of tasks
posted to consumers who only need notifications for one of those things
instead of all of them.
* chore: use PartitionOptions's new Cookies field
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2771318
* Revert "refactor: remove routing_id from CreateLoaderAndStart"
This reverts commit 8c9773b87a3c84f9073a47089eb2b6889d745245.
8c9773b was only a partial fix; reverting to start & try again.
* update patches
* chore: bump chromium in DEPS to 91.0.4466.0
* chore: update chromium/accelerator.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2795472
tldr: sync patch with upstream renamed variable & macro names.
* chore: update chromium/gtk_visibility.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2796200
tldr: no code changes; just updating the diff to apply cleanly.
note: ooh upstream Wayland hacking!
* chore: update chromium/picture-in-picture.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2710023
tldr: no code changes; just updating the diff to apply cleanly.
* chore: update chromium/worker_feat_add_hook_to_notify_script_ready.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2775573
tldr: no code changes; just updating the diff to apply cleanly.
* chore: export_all_patches
* chore: update chromium/feat_add_set_theme_source_to_allow_apps_to.patch
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2796511
tldr: NotifyObservers has been renamed to NotifyOnNativeThemeUpdated,
so update the invocation in our patch.
* chore: update ElectronBrowserClient w/upstream API
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2797454
tldr: GetDevToolsManagerDelegate() was returning an owned raw pointer.
Replaced it with CreateDevToolsManagerDelegate() which uses unique_ptr<>.
* chore: handle new content::PermissionType::FILE_HANDLING in toV8()
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2762201
`file-handling` string confirmed in https://chromium-review.googlesource.com/c/chromium/src/+/2762201/18/chrome/browser/ui/webui/settings/site_settings_helper.cc
* refactor: remove routing_id from CreateLoaderAndStart pt 1
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2762858
Part 1: the easiest ones
* 2796724: Support Python3
https://chromium-review.googlesource.com/c/infra/luci/python-adb/+/2796724
* chore: bump chromium in DEPS to 91.0.4468.0
* 2668974: WebShare: Implement SharingServicePicker
https://chromium-review.googlesource.com/c/chromium/src/+/2668974
* 2802766: Apply modernize-make-unique to media/
https://chromium-review.googlesource.com/c/chromium/src/+/2802766
* 2802823: Apply modernize-make-unique to gpu/
https://chromium-review.googlesource.com/c/chromium/src/+/2802823
* 2803041: Apply modernize-make-unique to remaining files
https://chromium-review.googlesource.com/c/chromium/src/+/2803041
* 2798873: Convert GtkKeyBindingsHandler build checks to runtime checks
https://chromium-review.googlesource.com/c/chromium/src/+/2798873
* 2733595: [ch-r] Parse ACCEPT_CH H2/3 frame and restart with new headers if needed
https://chromium-review.googlesource.com/c/chromium/src/+/2733595
* chore: update patch indices
* 2795107: Remove unused PermissionRequest IDs.
https://chromium-review.googlesource.com/c/chromium/src/+/2795107
* chore: bump chromium in DEPS to 91.0.4469.0
* chore: fixup patch indices
* chore: bump chromium in DEPS to 91.0.4469.5
* PiP 1.5: Add microphone, camera, and hang up buttons to the PiP window
https://chromium-review.googlesource.com/c/chromium/src/+/2710023
* fixup! refactor: remove routing_id from CreateLoaderAndStart
* refactor: use URLLoaderNetworkServiceObserver for auth requests from SimpleURLLoader
* fixup! chore: fixup patch indices
* 2724817: Expand scope of wasm-eval to all URLs
https://chromium-review.googlesource.com/c/chromium/src/+/2724817
* Fixup patch after rebase
* chore: bump chromium in DEPS to 91.0.4472.0
* 2797341: [ozone/x11] Enabled the global shortcut listener.
https://chromium-review.googlesource.com/c/chromium/src/+/2797341
* 2805553: Reland Add GTK ColorMixers to ColorPipeline P1
https://chromium-review.googlesource.com/c/chromium/src/+/2805553
* 2804366: PiP 1.5: Label back to tab button with origin and center it
https://chromium-review.googlesource.com/c/chromium/src/+/2804366
* 2784730: Fix crash on AX mode change in NativeViewHost without a Widget
https://chromium-review.googlesource.com/c/chromium/src/+/2784730
* chore: update patch indices
* 2810174: Add PdfAnnotationsEnabled policy.
https://chromium-review.googlesource.com/c/chromium/src/+/2810174
* 2807829: Allow capturers to indicate if they want a WakeLock or not.
https://chromium-review.googlesource.com/c/chromium/src/+/2807829
* chore: bump chromium in DEPS to 92.0.4473.0
* chore: bump chromium in DEPS to 92.0.4474.0
* chore: bump chromium in DEPS to 92.0.4475.0
* chore: update patches
* chore: updates patches
* chore: update is_media_key patch to handle new ozone impl
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2797341
* fix: ExecuteJavascript requests now need to be flagged as non-bf-aware
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2787195
* chore: icon_util_x11 is now icon_util_linux
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2791362
* build: update sysroots
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2628496
* build: fix missing symbols on linux build
* use_ozone and use_x11 are not exclusive
* new button view to build for pip
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2797341
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2804366
* chore: fix broken gtk_util color patch
* chore: remove patch conflict
* build: update linux manifests
* chore: build bttlb on all platforms for pip
* chore: add thread_pool include for views delegate win
* chore: fix lint
* chore: add node patches for V8 changes
* build: add missing base include on windows
* fix: update frame host manager patch for new state transitions
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2714464
* chore: update windows zip manifests
* chore: update mac zip manifests
* chore: fix patch linting
* refactor: implement missing URLLoaderNetworkServiceObserver methods
It is against The Mojo Rules to leave hanging callbacks. These always
have to be called.
Refs: https://github.com/electron/electron/commit/186528aab9f8e29d658f07d220bb7f627980edda
* spec: fix locale test on local linux
* fix: pass the exit code correctly in new PreMainMessageLoopRun
Refs: https://github.com/electron/electron/commit/2622e91c4493ceb032e2f80cb484885bb8f97475
* fix: ensure we early-exit when request_handler_ is not provided
Refs: https://github.com/electron/electron/commit/93077afbfb6db248a0c0cc447d7ad2c9ccfda1d5
* fix: strongly set result_code in the BrowserMainLoop
* fix: invalid usage of non-targetted PostTask
You must always either use a host threadpool or specify a target
thread. In this case we did neither after this refactor.
Refs: https://github.com/electron/electron/pull/28462/commits/4e33ee0ad35a710bd34641cb0376bdee6aea2d1f
* chore: fix gn check
* chore: remove stray .rej files in patch
* chore: add mojo error code to url loader failure
* build: ensure CI is truthy in arm test env
* fix: handle windowCaptureMacV2 being enabled when fetching media source id
Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2709931
Co-authored-by: Charles Kerr <charles@charleskerr.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
Co-authored-by: deepak1556 <hop2deep@gmail.com>
Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com>
Co-authored-by: Samuel Attard <sattard@slack-corp.com>
2021-04-15 17:44:35 +00:00
|
|
|
void ShowSharePicker(
|
|
|
|
const std::string& title,
|
|
|
|
const std::string& text,
|
|
|
|
const std::string& url,
|
|
|
|
const std::vector<std::string>& file_paths,
|
|
|
|
blink::mojom::ShareService::ShareCallback callback) override;
|
2018-08-30 22:44:35 +00:00
|
|
|
bool UpdateNSViewAndDisplay();
|
2020-08-12 18:33:58 +00:00
|
|
|
#endif // defined(OS_MAC)
|
2016-07-31 10:19:56 +00:00
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// content::RenderWidgetHostViewBase:
|
2017-07-08 19:25:15 +00:00
|
|
|
|
2018-11-07 19:17:53 +00:00
|
|
|
void ResetFallbackToFirstNavigationSurface() override;
|
2021-06-01 01:46:25 +00:00
|
|
|
void InitAsPopup(content::RenderWidgetHostView* parent_host_view,
|
2021-09-01 19:55:07 +00:00
|
|
|
const gfx::Rect& pos,
|
|
|
|
const gfx::Rect& anchor_rect) override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void UpdateCursor(const content::WebCursor&) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetIsLoading(bool is_loading) override;
|
2020-06-22 17:35:10 +00:00
|
|
|
void TextInputStateChanged(const ui::mojom::TextInputState& params) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
void ImeCancelComposition(void) override;
|
2019-05-01 00:18:22 +00:00
|
|
|
void RenderProcessGone() override;
|
2021-11-24 08:45:59 +00:00
|
|
|
void ShowWithVisibility(content::PageVisibilityState page_visibility) final;
|
2016-07-31 10:19:56 +00:00
|
|
|
void Destroy(void) override;
|
2021-05-14 01:21:36 +00:00
|
|
|
void UpdateTooltipUnderCursor(const std::u16string&) override;
|
2018-10-11 13:14:01 +00:00
|
|
|
content::CursorManager* GetCursorManager() override;
|
2018-05-15 01:59:22 +00:00
|
|
|
void CopyFromSurface(
|
|
|
|
const gfx::Rect& src_rect,
|
|
|
|
const gfx::Size& output_size,
|
|
|
|
base::OnceCallback<void(const SkBitmap&)> callback) override;
|
2021-11-24 08:45:59 +00:00
|
|
|
display::ScreenInfo GetScreenInfo() const override;
|
2018-10-05 18:03:35 +00:00
|
|
|
void TransformPointToRootSurface(gfx::PointF* point) override;
|
2016-07-31 10:19:56 +00:00
|
|
|
gfx::Rect GetBoundsInRootWindow(void) override;
|
2021-06-03 08:05:04 +00:00
|
|
|
absl::optional<content::DisplayFeature> GetDisplayFeature() override;
|
2020-11-14 00:16:56 +00:00
|
|
|
void SetDisplayFeatureForTesting(
|
|
|
|
const content::DisplayFeature* display_feature) override;
|
2021-11-24 08:45:59 +00:00
|
|
|
void NotifyHostAndDelegateOnWasShown(
|
|
|
|
blink::mojom::RecordContentToVisibleTimeRequestPtr) final;
|
|
|
|
void RequestPresentationTimeFromHostOrDelegate(
|
|
|
|
blink::mojom::RecordContentToVisibleTimeRequestPtr) final;
|
|
|
|
void CancelPresentationTimeRequestForHostAndDelegate() final;
|
2018-05-15 01:59:22 +00:00
|
|
|
viz::SurfaceId GetCurrentSurfaceId() const override;
|
2019-04-17 21:10:04 +00:00
|
|
|
std::unique_ptr<content::SyntheticGestureTarget>
|
|
|
|
CreateSyntheticGestureTarget() override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void ImeCompositionRangeChanged(const gfx::Range&,
|
|
|
|
const std::vector<gfx::Rect>&) override;
|
2019-04-20 17:20:37 +00:00
|
|
|
gfx::Size GetCompositorViewportPixelSize() override;
|
2021-06-16 22:43:51 +00:00
|
|
|
ui::Compositor* GetCompositor() override;
|
2018-10-11 13:14:01 +00:00
|
|
|
|
2017-03-14 11:56:24 +00:00
|
|
|
content::RenderWidgetHostViewBase* CreateViewForWidget(
|
2018-04-18 01:44:10 +00:00
|
|
|
content::RenderWidgetHost*,
|
|
|
|
content::RenderWidgetHost*,
|
|
|
|
content::WebContentsView*) override;
|
2017-03-14 11:56:24 +00:00
|
|
|
|
2020-10-16 01:30:41 +00:00
|
|
|
const viz::LocalSurfaceId& GetLocalSurfaceId() const override;
|
2018-10-11 13:14:01 +00:00
|
|
|
const viz::FrameSinkId& GetFrameSinkId() const override;
|
2018-08-20 16:54:31 +00:00
|
|
|
|
|
|
|
void DidNavigate() override;
|
|
|
|
|
2017-04-05 08:31:22 +00:00
|
|
|
bool TransformPointToCoordSpaceForView(
|
2018-05-15 01:59:22 +00:00
|
|
|
const gfx::PointF& point,
|
2017-04-05 08:31:22 +00:00
|
|
|
RenderWidgetHostViewBase* target_view,
|
2019-04-17 21:10:04 +00:00
|
|
|
gfx::PointF* transformed_point) override;
|
2017-04-05 08:31:22 +00:00
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// ui::CompositorDelegate:
|
2021-02-19 23:28:48 +00:00
|
|
|
bool IsOffscreen() const override;
|
2019-04-17 21:10:04 +00:00
|
|
|
std::unique_ptr<viz::HostDisplayClient> CreateHostDisplayClient(
|
2016-07-27 16:24:58 +00:00
|
|
|
ui::Compositor* compositor) override;
|
2016-08-03 04:46:34 +00:00
|
|
|
|
|
|
|
bool InstallTransparency();
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void CancelWidget();
|
|
|
|
void AddGuestHostView(OffScreenRenderWidgetHostView* guest_host);
|
|
|
|
void RemoveGuestHostView(OffScreenRenderWidgetHostView* guest_host);
|
2017-05-21 17:55:19 +00:00
|
|
|
void AddViewProxy(OffscreenViewProxy* proxy);
|
|
|
|
void RemoveViewProxy(OffscreenViewProxy* proxy);
|
2018-05-04 06:45:12 +00:00
|
|
|
void ProxyViewDestroyed(OffscreenViewProxy* proxy) override;
|
2017-03-04 02:09:16 +00:00
|
|
|
|
2016-08-04 04:22:19 +00:00
|
|
|
void OnPaint(const gfx::Rect& damage_rect, const SkBitmap& bitmap);
|
2019-04-17 21:10:04 +00:00
|
|
|
void OnPopupPaint(const gfx::Rect& damage_rect);
|
2018-05-04 06:45:12 +00:00
|
|
|
void OnProxyViewPaint(const gfx::Rect& damage_rect) override;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
gfx::Size SizeInPixels();
|
|
|
|
|
|
|
|
void CompositeFrame(const gfx::Rect& damage_rect);
|
|
|
|
|
2019-01-30 17:33:32 +00:00
|
|
|
bool IsPopupWidget() const {
|
|
|
|
return widget_type_ == content::WidgetType::kPopup;
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
const SkBitmap& GetBacking() { return *backing_.get(); }
|
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void HoldResize();
|
|
|
|
void ReleaseResize();
|
2018-10-05 18:03:35 +00:00
|
|
|
void SynchronizeVisualProperties();
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2018-05-15 01:59:22 +00:00
|
|
|
void SendMouseEvent(const blink::WebMouseEvent& event);
|
|
|
|
void SendMouseWheelEvent(const blink::WebMouseWheelEvent& event);
|
2016-07-27 17:44:41 +00:00
|
|
|
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetPainting(bool painting);
|
2016-07-30 13:40:16 +00:00
|
|
|
bool IsPainting() const;
|
|
|
|
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetFrameRate(int frame_rate);
|
2016-07-30 13:40:16 +00:00
|
|
|
int GetFrameRate() const;
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
ui::Layer* GetRootLayer() const;
|
2018-10-05 18:03:35 +00:00
|
|
|
|
2016-09-07 08:33:09 +00:00
|
|
|
content::DelegatedFrameHost* GetDelegatedFrameHost() const;
|
|
|
|
|
2016-09-01 17:25:12 +00:00
|
|
|
void Invalidate();
|
2017-03-04 02:09:16 +00:00
|
|
|
void InvalidateBounds(const gfx::Rect&);
|
2016-09-01 17:25:12 +00:00
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
content::RenderWidgetHostImpl* render_widget_host() const {
|
|
|
|
return render_widget_host_;
|
|
|
|
}
|
2018-11-30 05:25:02 +00:00
|
|
|
|
2016-12-20 01:23:41 +00:00
|
|
|
gfx::Size size() const { return size_; }
|
2016-08-03 04:46:34 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void set_popup_host_view(OffScreenRenderWidgetHostView* popup_view) {
|
|
|
|
popup_host_view_ = popup_view;
|
|
|
|
}
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2017-03-04 02:09:16 +00:00
|
|
|
void set_child_host_view(OffScreenRenderWidgetHostView* child_view) {
|
|
|
|
child_host_view_ = child_view;
|
|
|
|
}
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
private:
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetupFrameRate(bool force);
|
2018-08-20 16:54:31 +00:00
|
|
|
void ResizeRootLayer(bool force);
|
2016-07-22 11:55:58 +00:00
|
|
|
|
2020-02-27 19:00:07 +00:00
|
|
|
viz::FrameSinkId AllocateFrameSinkId();
|
2017-04-05 08:31:22 +00:00
|
|
|
|
2017-07-08 19:25:15 +00:00
|
|
|
// Applies background color without notifying the RenderWidget about
|
|
|
|
// opaqueness changes.
|
|
|
|
void UpdateBackgroundColorFromRenderer(SkColor color);
|
|
|
|
|
2016-08-03 04:46:34 +00:00
|
|
|
// Weak ptrs.
|
2016-07-13 15:43:00 +00:00
|
|
|
content::RenderWidgetHostImpl* render_widget_host_;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
OffScreenRenderWidgetHostView* parent_host_view_ = nullptr;
|
|
|
|
OffScreenRenderWidgetHostView* popup_host_view_ = nullptr;
|
|
|
|
OffScreenRenderWidgetHostView* child_host_view_ = nullptr;
|
2017-03-04 02:09:16 +00:00
|
|
|
std::set<OffScreenRenderWidgetHostView*> guest_host_views_;
|
2017-05-21 17:55:19 +00:00
|
|
|
std::set<OffscreenViewProxy*> proxy_views_;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2016-08-04 04:03:24 +00:00
|
|
|
const bool transparent_;
|
2016-08-03 04:04:36 +00:00
|
|
|
OnPaintCallback callback_;
|
2019-04-17 21:10:04 +00:00
|
|
|
OnPopupPaintCallback parent_callback_;
|
2016-07-29 12:50:27 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
int frame_rate_ = 0;
|
|
|
|
int frame_rate_threshold_us_ = 0;
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
base::Time last_time_ = base::Time::Now();
|
2016-07-25 13:55:00 +00:00
|
|
|
|
2016-07-13 15:43:00 +00:00
|
|
|
gfx::Vector2dF last_scroll_offset_;
|
|
|
|
gfx::Size size_;
|
2016-07-30 13:40:16 +00:00
|
|
|
bool painting_;
|
2017-03-05 15:18:57 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
bool is_showing_ = false;
|
|
|
|
bool is_destroyed_ = false;
|
2017-03-04 02:09:16 +00:00
|
|
|
gfx::Rect popup_position_;
|
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
bool hold_resize_ = false;
|
|
|
|
bool pending_resize_ = false;
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
bool paint_callback_running_ = false;
|
2018-01-25 13:42:11 +00:00
|
|
|
|
2020-10-16 01:30:41 +00:00
|
|
|
viz::LocalSurfaceId delegated_frame_host_surface_id_;
|
2019-04-17 21:10:04 +00:00
|
|
|
viz::ParentLocalSurfaceIdAllocator delegated_frame_host_allocator_;
|
|
|
|
|
2020-10-16 01:30:41 +00:00
|
|
|
viz::LocalSurfaceId compositor_surface_id_;
|
2019-04-17 21:10:04 +00:00
|
|
|
viz::ParentLocalSurfaceIdAllocator compositor_allocator_;
|
2018-03-17 22:26:41 +00:00
|
|
|
|
2016-07-18 14:16:23 +00:00
|
|
|
std::unique_ptr<ui::Layer> root_layer_;
|
2016-08-03 04:46:34 +00:00
|
|
|
std::unique_ptr<ui::Compositor> compositor_;
|
|
|
|
std::unique_ptr<content::DelegatedFrameHost> delegated_frame_host_;
|
|
|
|
|
2018-10-11 13:14:01 +00:00
|
|
|
std::unique_ptr<content::CursorManager> cursor_manager_;
|
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
OffScreenHostDisplayClient* host_display_client_;
|
|
|
|
std::unique_ptr<OffScreenVideoConsumer> video_consumer_;
|
2016-07-18 14:16:23 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
std::unique_ptr<ElectronDelegatedFrameHostClient>
|
|
|
|
delegated_frame_host_client_;
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2018-08-20 16:54:31 +00:00
|
|
|
content::MouseWheelPhaseHandler mouse_wheel_phase_handler_;
|
|
|
|
|
2018-10-05 18:03:35 +00:00
|
|
|
// Latest capture sequence number which is incremented when the caller
|
|
|
|
// requests surfaces be synchronized via
|
2019-02-04 13:33:47 +00:00
|
|
|
// EnsureSurfaceSynchronizedForWebTest().
|
2018-10-05 18:03:35 +00:00
|
|
|
uint32_t latest_capture_sequence_number_ = 0u;
|
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
SkColor background_color_ = SkColor();
|
2017-07-08 19:25:15 +00:00
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
std::unique_ptr<SkBitmap> backing_;
|
|
|
|
|
2021-01-26 18:16:21 +00:00
|
|
|
base::WeakPtrFactory<OffScreenRenderWidgetHostView> weak_ptr_factory_{this};
|
2016-07-05 19:33:22 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2016-07-05 19:33:22 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
|