2018-10-24 11:24:11 -07:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-09-20 17:30:26 -07:00
|
|
|
From: Cheng Zhao <zcbenz@gmail.com>
|
|
|
|
Date: Thu, 20 Sep 2018 17:45:47 -0700
|
|
|
|
Subject: disable_hidden.patch
|
|
|
|
|
2019-12-13 09:18:45 -08:00
|
|
|
Electron uses this to disable background throttling for hidden windows.
|
2018-09-20 17:30:26 -07:00
|
|
|
|
2018-09-13 22:02:16 -07:00
|
|
|
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
|
2024-09-26 11:12:12 +02:00
|
|
|
index 5754c2bd330537ac0dde9fe71e263c1ee6f06e53..bf2dd48ecc9f246330a42d21d2450df7aa20928b 100644
|
2018-09-13 22:02:16 -07:00
|
|
|
--- a/content/browser/renderer_host/render_widget_host_impl.cc
|
|
|
|
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
2024-09-26 11:12:12 +02:00
|
|
|
@@ -789,6 +789,9 @@ void RenderWidgetHostImpl::WasHidden() {
|
2018-09-13 22:02:16 -07:00
|
|
|
return;
|
2023-05-23 14:58:58 -05:00
|
|
|
}
|
2018-09-13 22:02:16 -07:00
|
|
|
|
|
|
|
+ if (disable_hidden_)
|
|
|
|
+ return;
|
|
|
|
+
|
2024-01-31 17:04:13 -06:00
|
|
|
RejectPointerLockOrUnlockIfNecessary(
|
2020-03-14 13:54:14 -07:00
|
|
|
blink::mojom::PointerLockResult::kWrongDocument);
|
2018-09-13 22:02:16 -07:00
|
|
|
|
|
|
|
diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h
|
2024-09-26 11:12:12 +02:00
|
|
|
index 3d03709303e22489edf7c8cf61a611c0832ea26e..469b91d7bd3f46fb23645a9d5a0f1f9e5519ba59 100644
|
2018-09-13 22:02:16 -07:00
|
|
|
--- a/content/browser/renderer_host/render_widget_host_impl.h
|
|
|
|
+++ b/content/browser/renderer_host/render_widget_host_impl.h
|
2024-09-26 11:12:12 +02:00
|
|
|
@@ -1008,6 +1008,9 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
2024-07-02 09:51:33 +02:00
|
|
|
// Requests a commit and forced redraw in the renderer compositor.
|
|
|
|
void ForceRedrawForTesting();
|
|
|
|
|
2018-09-13 22:02:16 -07:00
|
|
|
+ // Electron: Prevents the widget from getting hidden.
|
|
|
|
+ bool disable_hidden_ = false;
|
2024-07-02 09:51:33 +02:00
|
|
|
+
|
|
|
|
protected:
|
|
|
|
// |routing_id| must not be MSG_ROUTING_NONE.
|
|
|
|
// If this object outlives |delegate|, DetachDelegate() must be called when
|
2020-03-26 20:54:11 +01:00
|
|
|
diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
2024-09-26 11:12:12 +02:00
|
|
|
index 8d972bcdd27ee4f2c58e7c2afa48d09b17834484..7d98ecd39b39378fb4f16a9abbdd18ad31f69610 100644
|
2020-03-26 20:54:11 +01:00
|
|
|
--- a/content/browser/renderer_host/render_widget_host_view_aura.cc
|
|
|
|
+++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
2024-09-26 11:12:12 +02:00
|
|
|
@@ -649,7 +649,7 @@ void RenderWidgetHostViewAura::HideImpl() {
|
2024-05-10 11:21:10 -04:00
|
|
|
CHECK(visibility_ == Visibility::HIDDEN ||
|
|
|
|
visibility_ == Visibility::OCCLUDED);
|
2020-03-26 20:54:11 +01:00
|
|
|
|
|
|
|
- if (!host()->is_hidden()) {
|
|
|
|
+ if (!host()->is_hidden() && !host()->disable_hidden_) {
|
|
|
|
host()->WasHidden();
|
|
|
|
aura::WindowTreeHost* host = window_->GetHost();
|
2021-02-09 12:16:21 -08:00
|
|
|
aura::Window* parent = window_->parent();
|