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
|
2025-02-27 14:22:27 -06:00
|
|
|
index 734e717d2cc5cf31473ed47f733a619dfacca39e..761469e3ca95ebe1269f005a2b3527cd1f4fdc56 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
|
2025-02-19 12:09:35 +01:00
|
|
|
@@ -799,6 +799,10 @@ 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
|
|
|
|
2024-10-07 18:06:47 -05:00
|
|
|
+ if (disable_hidden_) {
|
2018-09-13 22:02:16 -07:00
|
|
|
+ return;
|
2024-10-07 18:06:47 -05:00
|
|
|
+ }
|
2018-09-13 22:02:16 -07:00
|
|
|
+
|
2024-10-15 11:51:11 -04:00
|
|
|
// Cancel pending pointer lock requests, unless there's an open user prompt.
|
|
|
|
// Prompts should remain open and functional across tab switches.
|
|
|
|
if (!delegate_->IsWaitingForPointerLockPrompt(this)) {
|
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
|
2025-02-27 14:22:27 -06:00
|
|
|
index c3429732757d87df1363a8ce10deee82ef674514..4cf7f44c7fd955cc4d19c11cc0015d3d8562d950 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
|
2025-02-27 14:22:27 -06:00
|
|
|
@@ -1010,6 +1010,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
|
2025-02-27 14:22:27 -06:00
|
|
|
index 1d08f25b91496dbafc3a164e7fb3e66d1a48557b..92085aca6bd0c95a73b98e4173c0128d596b77f4 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
|
2025-01-10 10:52:34 -06:00
|
|
|
@@ -643,7 +643,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();
|