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-09-24 11:56:54 -04:00
|
|
|
index b70623b56267fb7df71519a2c19a04a658f766e2..0bae000a3491e03196bbba033621d389c6150225 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-09-24 11:56:54 -04:00
|
|
|
@@ -840,6 +840,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.
|
2025-02-21 14:46:51 -08:00
|
|
|
if (!delegate_ || !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-09-24 11:56:54 -04:00
|
|
|
index 636f09a8ac86e7c3f7b8dcdc285792f18f5c5989..276852573eade86f1bc9690e3c78a6279e9ff5af 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-09-24 11:56:54 -04:00
|
|
|
@@ -1031,6 +1031,8 @@ class CONTENT_EXPORT RenderWidgetHostImpl
|
|
|
|
|
return synthetic_gesture_controller_.get();
|
|
|
|
|
}
|
2024-07-02 09:51:33 +02:00
|
|
|
|
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:
|
2025-07-22 16:09:47 -07:00
|
|
|
// |routing_id| must not be IPC::mojom::kRoutingIdNone.
|
2024-07-02 09:51:33 +02:00
|
|
|
// 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-09-24 11:56:54 -04:00
|
|
|
index 7b6b19812f5f1989e39d9c33b387159380beb544..e95a313945397c6eff5514932ce15c5d4b6a8e1f 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-09-24 11:56:54 -04:00
|
|
|
@@ -642,7 +642,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();
|