Skip to content

Commit 9d6dac0

Browse files
committed
chore: update patches
1 parent 368eb39 commit 9d6dac0

File tree

65 files changed

+292
-313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+292
-313
lines changed

patches/boringssl/revert_track_ssl_error_zero_return_explicitly.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ index 2ca14efae5ea478f43794a81883b00dfdb1a37b0..d73055fbf39334925ef4b4804bbaca57
2020

2121
case ssl_open_record_error:
2222
diff --git a/ssl/ssl_lib.cc b/ssl/ssl_lib.cc
23-
index 98f97ebb28a06dfde00082922a1aff24f8aa154c..8ec11f0e839760ace90bd88e096ffbd17508e224 100644
23+
index ec0ee893e58d49890f5545d02b533d07e362309c..b1c1a77c340e7d2c9e2ef21fcf0cc01ed6e15cc0 100644
2424
--- a/ssl/ssl_lib.cc
2525
+++ b/ssl/ssl_lib.cc
26-
@@ -1334,7 +1334,7 @@ int SSL_get_error(const SSL *ssl, int ret_code) {
26+
@@ -1340,7 +1340,7 @@ int SSL_get_error(const SSL *ssl, int ret_code) {
2727
}
2828

2929
if (ret_code == 0) {
@@ -32,7 +32,7 @@ index 98f97ebb28a06dfde00082922a1aff24f8aa154c..8ec11f0e839760ace90bd88e096ffbd1
3232
return SSL_ERROR_ZERO_RETURN;
3333
}
3434
// An EOF was observed which violates the protocol, and the underlying
35-
@@ -2701,13 +2701,7 @@ void *SSL_CTX_get_ex_data(const SSL_CTX *ctx, int idx) {
35+
@@ -2707,13 +2707,7 @@ void *SSL_CTX_get_ex_data(const SSL_CTX *ctx, int idx) {
3636
return CRYPTO_get_ex_data(&ctx->ex_data, idx);
3737
}
3838

patches/chromium/.patches

-1
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,4 @@ fix_getcursorscreenpoint_wrongly_returns_0_0.patch
126126
fix_add_support_for_skipping_first_2_no-op_refreshes_in_thumb_cap.patch
127127
refactor_expose_file_system_access_blocklist.patch
128128
partially_revert_is_newly_created_to_allow_for_browser_initiated.patch
129-
fix_use_app_launch_prefetch_namespace_for_subprocesstype.patch
130129
feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch

patches/chromium/add_contentgpuclient_precreatemessageloop_callback.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Allows Electron to restore WER when ELECTRON_DEFAULT_ERROR_MODE is set.
1010
This should be upstreamed.
1111

1212
diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc
13-
index ab52bde9d5ffe8a18621d3bca22fa900af8f56ab..196807d12d385d42a6e3acc7ad1bdb5dd134d48b 100644
13+
index bb019363bf40f8f2df7815353784c357254c0132..e994a0e7bbef2f78c642486e84aa0386cab7f794 100644
1414
--- a/content/gpu/gpu_main.cc
1515
+++ b/content/gpu/gpu_main.cc
16-
@@ -266,6 +266,10 @@ int GpuMain(MainFunctionParams parameters) {
16+
@@ -264,6 +264,10 @@ int GpuMain(MainFunctionParams parameters) {
1717
// to the GpuProcessHost once the GpuServiceImpl has started.
1818
viz::GpuServiceImpl::InstallPreInitializeLogHandler();
1919

@@ -24,7 +24,7 @@ index ab52bde9d5ffe8a18621d3bca22fa900af8f56ab..196807d12d385d42a6e3acc7ad1bdb5d
2424
// We are experiencing what appear to be memory-stomp issues in the GPU
2525
// process. These issues seem to be impacting the task executor and listeners
2626
// registered to it. Create the task executor on the heap to guard against
27-
@@ -364,7 +368,6 @@ int GpuMain(MainFunctionParams parameters) {
27+
@@ -362,7 +366,6 @@ int GpuMain(MainFunctionParams parameters) {
2828
#endif
2929
const bool dead_on_arrival = !init_success;
3030

patches/chromium/add_didinstallconditionalfeatures.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ index 2bb6e24cf5b83b8f6cf523d648307608ede1b538..1fe4df62e66fd10267e72d91176529fc
6767
virtual void WillReleaseScriptContext(v8::Local<v8::Context>,
6868
int32_t world_id) {}
6969
diff --git a/third_party/blink/renderer/bindings/core/v8/local_window_proxy.cc b/third_party/blink/renderer/bindings/core/v8/local_window_proxy.cc
70-
index 0d387e5ae2177311123789762fb2686770e78cab..6b442f0568f119bf8476a09d91a5fdd59b469399 100644
70+
index 50352340def787f5c6a382b622c37905ee79302c..97a79a4bfbcdd63ec01b201571fdccf2701ae40b 100644
7171
--- a/third_party/blink/renderer/bindings/core/v8/local_window_proxy.cc
7272
+++ b/third_party/blink/renderer/bindings/core/v8/local_window_proxy.cc
7373
@@ -215,6 +215,7 @@ void LocalWindowProxy::Initialize() {

patches/chromium/allow_disabling_blink_scheduler_throttling_per_renderview.patch

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ index 1eb0f9919a29acf9f443f15ef5e7549138d73f7b..070ad96c753bc064c1af48a934a7a3bc
2323
return receiver_.BindNewEndpointAndPassDedicatedRemote();
2424
}
2525
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
26-
index 25350f7be707e817abb1507b5dbc7749e998419e..7d9648cbd9b7345f9eec3192157e0d140486db32 100644
26+
index d39f6f582109e7323372c032048544738372cf41..9ba70f021fd72e5861566e89f40af3edf4dea7e1 100644
2727
--- a/content/browser/renderer_host/render_view_host_impl.cc
2828
+++ b/content/browser/renderer_host/render_view_host_impl.cc
29-
@@ -714,6 +714,11 @@ void RenderViewHostImpl::SetBackgroundOpaque(bool opaque) {
29+
@@ -713,6 +713,11 @@ void RenderViewHostImpl::SetBackgroundOpaque(bool opaque) {
3030
GetWidget()->GetAssociatedFrameWidget()->SetBackgroundOpaque(opaque);
3131
}
3232

@@ -51,7 +51,7 @@ index 5b4e90e2a9293f6d59e92b16bd461500f8188cc7..b69f66e5cf009a340766c355d9ceea89
5151
void SendRendererPreferencesToRenderer(
5252
const blink::RendererPreferences& preferences);
5353
diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
54-
index ef10eb9f456f7e16566d22c9c5d674f03016585b..efc25342e674e5b37c8eac0a7f69dc700527af84 100644
54+
index 22b910c87af72afb532d8cdf5e19f5080b26c0f3..15b703825765c820cc43f252cb261df35574a4d4 100644
5555
--- a/content/browser/renderer_host/render_widget_host_view_aura.cc
5656
+++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
5757
@@ -564,8 +564,8 @@ void RenderWidgetHostViewAura::ShowImpl(PageVisibilityState page_visibility) {
@@ -116,7 +116,7 @@ index 6dfc5bef7ed4197067f63db2e12de9b1e1478e2e..ab8eb5352a18c514d864d6fd7c64a61e
116116
// Visibility -----------------------------------------------------------
117117

118118
diff --git a/third_party/blink/renderer/core/exported/web_view_impl.cc b/third_party/blink/renderer/core/exported/web_view_impl.cc
119-
index d0d5030c68f39b18525a057fe0423544fac7350e..092e56e95c1e35a3a47c6e4d15d84d221a0278a2 100644
119+
index 76fcab94cf39fa31dc4f1fad1b7c4fc58a87f9a7..c8a0e0355e377a74580df6d42d8adc4115dba10e 100644
120120
--- a/third_party/blink/renderer/core/exported/web_view_impl.cc
121121
+++ b/third_party/blink/renderer/core/exported/web_view_impl.cc
122122
@@ -2433,6 +2433,10 @@ void WebViewImpl::SetPageLifecycleStateInternal(
@@ -130,7 +130,7 @@ index d0d5030c68f39b18525a057fe0423544fac7350e..092e56e95c1e35a3a47c6e4d15d84d22
130130
bool storing_in_bfcache = new_state->is_in_back_forward_cache &&
131131
!old_state->is_in_back_forward_cache;
132132
bool restoring_from_bfcache = !new_state->is_in_back_forward_cache &&
133-
@@ -3939,10 +3943,23 @@ PageScheduler* WebViewImpl::Scheduler() const {
133+
@@ -3943,10 +3947,23 @@ PageScheduler* WebViewImpl::Scheduler() const {
134134
return GetPage()->GetPageScheduler();
135135
}
136136

patches/chromium/allow_in-process_windows_to_have_different_web_prefs.patch

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WebPreferences of in-process child windows, rather than relying on
88
process-level command line switches, as before.
99

1010
diff --git a/third_party/blink/common/web_preferences/web_preferences_mojom_traits.cc b/third_party/blink/common/web_preferences/web_preferences_mojom_traits.cc
11-
index 6178078c6e57fa80a9b671df545c2d39c13142d6..dece2bc9ab0f767f29cac7f9d49a5c1f903d5722 100644
11+
index 8e64d21dabf5b8fd4c5257d719e7e32694c9941f..fecedfa9070bd042ef7f64cf69410652fef0ee04 100644
1212
--- a/third_party/blink/common/web_preferences/web_preferences_mojom_traits.cc
1313
+++ b/third_party/blink/common/web_preferences/web_preferences_mojom_traits.cc
1414
@@ -149,6 +149,19 @@ bool StructTraits<blink::mojom::WebPreferencesDataView,
@@ -32,7 +32,7 @@ index 6178078c6e57fa80a9b671df545c2d39c13142d6..dece2bc9ab0f767f29cac7f9d49a5c1f
3232
out->accelerated_video_decode_enabled =
3333
data.accelerated_video_decode_enabled();
3434
diff --git a/third_party/blink/public/common/web_preferences/web_preferences.h b/third_party/blink/public/common/web_preferences/web_preferences.h
35-
index cabd505429b3d04ef0f403bdefe4abe1dbbc2564..592e6ce61fd3678ed025c3fad104f987dd7af626 100644
35+
index 87c1c11ace3bb394b6c313c097c521466e666f42..b4c012ca1f384ffff2b17bb7b01436efad82d6c8 100644
3636
--- a/third_party/blink/public/common/web_preferences/web_preferences.h
3737
+++ b/third_party/blink/public/common/web_preferences/web_preferences.h
3838
@@ -10,6 +10,7 @@
@@ -43,7 +43,7 @@ index cabd505429b3d04ef0f403bdefe4abe1dbbc2564..592e6ce61fd3678ed025c3fad104f987
4343
#include "net/nqe/effective_connection_type.h"
4444
#include "third_party/blink/public/common/common_export.h"
4545
#include "third_party/blink/public/mojom/css/preferred_color_scheme.mojom-shared.h"
46-
@@ -431,6 +432,20 @@ struct BLINK_COMMON_EXPORT WebPreferences {
46+
@@ -433,6 +434,20 @@ struct BLINK_COMMON_EXPORT WebPreferences {
4747
// blocking user's access to the background web content.
4848
bool modal_context_menu = true;
4949

@@ -65,7 +65,7 @@ index cabd505429b3d04ef0f403bdefe4abe1dbbc2564..592e6ce61fd3678ed025c3fad104f987
6565
// chrome, except for the cases where it would require lots of extra work for
6666
// the embedder to use the same default value.
6767
diff --git a/third_party/blink/public/common/web_preferences/web_preferences_mojom_traits.h b/third_party/blink/public/common/web_preferences/web_preferences_mojom_traits.h
68-
index e32f89a2f97b56ea67d834774d7e36998c83698e..e4b16f8961242fca03c583d04561784cc9c96e8e 100644
68+
index 07cd07c0eb0b05c69e45dd2671d1d4b72f80a596..95119f670cd7e139278045e7f9e5d3d38cde6b5c 100644
6969
--- a/third_party/blink/public/common/web_preferences/web_preferences_mojom_traits.h
7070
+++ b/third_party/blink/public/common/web_preferences/web_preferences_mojom_traits.h
7171
@@ -6,6 +6,7 @@
@@ -130,7 +130,7 @@ index e32f89a2f97b56ea67d834774d7e36998c83698e..e4b16f8961242fca03c583d04561784c
130130
return r.cookie_enabled;
131131
}
132132
diff --git a/third_party/blink/public/mojom/webpreferences/web_preferences.mojom b/third_party/blink/public/mojom/webpreferences/web_preferences.mojom
133-
index 0471df98f9c83dc3b262938fe4312b043f56bf31..615aaf842c48544cdf0254d042fdbcbc797ece4a 100644
133+
index 2ac86706dcd9912d420c7a33216fb2a3a964cf23..f0c50bffce7cb18fe0949007a5af5c5e4755dcc6 100644
134134
--- a/third_party/blink/public/mojom/webpreferences/web_preferences.mojom
135135
+++ b/third_party/blink/public/mojom/webpreferences/web_preferences.mojom
136136
@@ -9,6 +9,7 @@ import "third_party/blink/public/mojom/css/preferred_contrast.mojom";

patches/chromium/blink_file_path.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is used by editors to obtain the filesystem path from a dragged file. See
77
documentation at https://electronjs.org/docs/api/file-object
88

99
diff --git a/third_party/blink/renderer/core/fileapi/file.h b/third_party/blink/renderer/core/fileapi/file.h
10-
index bb5967988cb69d24af94337b67379f1200a2508b..a935500bbef25a73840931648f3e65e70fc098f4 100644
10+
index 3b120f0de6dcd7e584a7882df9ece2a7adcbc368..01b5f3391abb0d8ff76c427fa187f9d6d2523919 100644
1111
--- a/third_party/blink/renderer/core/fileapi/file.h
1212
+++ b/third_party/blink/renderer/core/fileapi/file.h
1313
@@ -220,6 +220,9 @@ class CORE_EXPORT File final : public Blob {

patches/chromium/blink_local_frame.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ index 0a742bbbd5e8e1eb3610cc32f785f779e8907e75..26967019244d409dadf4533405d4d5d2
4949
// its owning reference back to our owning LocalFrame.
5050
client_->Detached(type);
5151
diff --git a/third_party/blink/renderer/core/frame/local_frame.cc b/third_party/blink/renderer/core/frame/local_frame.cc
52-
index f1d2b1d52929a9b9d58a5749a8c3c94f67baf962..8d818e8f77d08a22a114782296ea45c622e46fd9 100644
52+
index 2b64eec1aa5484750e5510108ea0db3360522aec..697b2016bcd909718c92c84eeb8856d85dace55a 100644
5353
--- a/third_party/blink/renderer/core/frame/local_frame.cc
5454
+++ b/third_party/blink/renderer/core/frame/local_frame.cc
55-
@@ -689,10 +689,6 @@ bool LocalFrame::DetachImpl(FrameDetachType type) {
55+
@@ -710,10 +710,6 @@ bool LocalFrame::DetachImpl(FrameDetachType type) {
5656
}
5757
DCHECK(!view_ || !view_->IsAttached());
5858

@@ -63,7 +63,7 @@ index f1d2b1d52929a9b9d58a5749a8c3c94f67baf962..8d818e8f77d08a22a114782296ea45c6
6363
if (!Client())
6464
return false;
6565

66-
@@ -743,6 +739,11 @@ bool LocalFrame::DetachImpl(FrameDetachType type) {
66+
@@ -764,6 +760,11 @@ bool LocalFrame::DetachImpl(FrameDetachType type) {
6767
DCHECK(!view_->IsAttached());
6868
Client()->WillBeDetached();
6969

patches/chromium/build_add_electron_tracing_category.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories in use are known / declared. This patch is required for us
88
to introduce a new Electron category for Electron-specific tracing.
99

1010
diff --git a/base/trace_event/builtin_categories.h b/base/trace_event/builtin_categories.h
11-
index 8c6cf1b8c13030bc9e33c8bd6e7f81e9c0ce34e9..3d968f801c47f4b80ef571b99890d926d383a929 100644
11+
index 4c1a949117a070a74285d043ec89a677952fd2c4..a62476b75142705c01c7d2260c93fa7b4342a2b6 100644
1212
--- a/base/trace_event/builtin_categories.h
1313
+++ b/base/trace_event/builtin_categories.h
1414
@@ -87,6 +87,7 @@

patches/chromium/build_do_not_depend_on_packed_resource_integrity.patch

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if we ever align our .pak file generation with Chrome we can remove this
1111
patch.
1212

1313
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
14-
index a472e9a72dc5c04e92f007e1740a4b6aaf54f63b..b7f8ae82d540ea373972678f3cd93f8d41fc8d99 100644
14+
index c13bf8667c6996ec8ad4a3149993b266cea446bf..da2704e283bbaad9110ca57fb5bef786362c224e 100644
1515
--- a/chrome/BUILD.gn
1616
+++ b/chrome/BUILD.gn
1717
@@ -189,11 +189,16 @@ if (!is_android && !is_mac) {
@@ -33,10 +33,10 @@ index a472e9a72dc5c04e92f007e1740a4b6aaf54f63b..b7f8ae82d540ea373972678f3cd93f8d
3333
"//base",
3434
"//build:branding_buildflags",
3535
diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn
36-
index 26c26eafb1a87609d1c045c9adbdb3048afdb210..77806b6c5ea44408d3ab6ef853b410f2a6c31ce9 100644
36+
index 95e735d6d77503982ed49dee6c97216993cbaf54..6aeafefeffa2c2ec08c22798f572c61052c92ff7 100644
3737
--- a/chrome/browser/BUILD.gn
3838
+++ b/chrome/browser/BUILD.gn
39-
@@ -4868,7 +4868,7 @@ static_library("browser") {
39+
@@ -4914,7 +4914,7 @@ static_library("browser") {
4040

4141
# On Windows, the hashes are embedded in //chrome:chrome_initial rather
4242
# than here in :chrome_dll.
@@ -46,10 +46,10 @@ index 26c26eafb1a87609d1c045c9adbdb3048afdb210..77806b6c5ea44408d3ab6ef853b410f2
4646
sources += [ "certificate_viewer_stub.cc" ]
4747
}
4848
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
49-
index 2ffd0dbb0bccfa7fdc393a41fb4474288c1621c7..8839dc3463584c537ff7795999f4b10f1dd48d7a 100644
49+
index 213053f573570692453bf7895a5aa81e7eb4ca91..37b1ac7fea94858c79dcddaae0cfe710346c7a62 100644
5050
--- a/chrome/test/BUILD.gn
5151
+++ b/chrome/test/BUILD.gn
52-
@@ -7265,9 +7265,12 @@ test("unit_tests") {
52+
@@ -7315,9 +7315,12 @@ test("unit_tests") {
5353
"//chrome/browser/safe_browsing/incident_reporting/verifier_test:verifier_test_dll_2",
5454
]
5555

@@ -63,7 +63,7 @@ index 2ffd0dbb0bccfa7fdc393a41fb4474288c1621c7..8839dc3463584c537ff7795999f4b10f
6363
"//chrome//services/util_win:unit_tests",
6464
"//chrome/app:chrome_dll_resources",
6565
"//chrome/app:win_unit_tests",
66-
@@ -8258,6 +8261,10 @@ test("unit_tests") {
66+
@@ -8314,6 +8317,10 @@ test("unit_tests") {
6767
"../browser/performance_manager/policies/background_tab_loading_policy_unittest.cc",
6868
]
6969

@@ -74,7 +74,7 @@ index 2ffd0dbb0bccfa7fdc393a41fb4474288c1621c7..8839dc3463584c537ff7795999f4b10f
7474
sources += [
7575
# The importer code is not used on Android.
7676
"../common/importer/firefox_importer_utils_unittest.cc",
77-
@@ -8329,7 +8336,6 @@ test("unit_tests") {
77+
@@ -8390,7 +8397,6 @@ test("unit_tests") {
7878
}
7979

8080
deps += [

patches/chromium/build_gn.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ These are variables we add to the root BUILDCONFIG so that they're available
77
everywhere, without having to import("//electron/.../flags.gni").
88

99
diff --git a/build/config/BUILDCONFIG.gn b/build/config/BUILDCONFIG.gn
10-
index 26fad5adf994a028240f690b7c6ae665558071b4..ff903cd81f731de410e093a077cc2df597a6e843 100644
10+
index b8cac29305c3cfb5fbc0142ae17a4d802b52d80f..1221901b690b5a7a85179d909351c5b6a6fc67bf 100644
1111
--- a/build/config/BUILDCONFIG.gn
1212
+++ b/build/config/BUILDCONFIG.gn
1313
@@ -123,6 +123,9 @@ if (current_os == "") {

patches/chromium/can_create_window.patch

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ potentially prevent a window from being created.
99
TODO(loc): this patch is currently broken.
1010

1111
diff --git a/content/browser/renderer_host/render_frame_host_impl.cc b/content/browser/renderer_host/render_frame_host_impl.cc
12-
index 7ba21901b680d9cf3b220ba85aef3a51c42489da..804c15034d7f5beefa5144d9a7788b08c3ea4fcd 100644
12+
index 6ed32a38fc9f38a536f3e3a1e127b1e3b5a4e330..182f3fa320cc2f1f8f19cf14f2eff8792a986405 100644
1313
--- a/content/browser/renderer_host/render_frame_host_impl.cc
1414
+++ b/content/browser/renderer_host/render_frame_host_impl.cc
15-
@@ -8512,6 +8512,7 @@ void RenderFrameHostImpl::CreateNewWindow(
15+
@@ -8555,6 +8555,7 @@ void RenderFrameHostImpl::CreateNewWindow(
1616
last_committed_origin_, params->window_container_type,
1717
params->target_url, params->referrer.To<Referrer>(),
1818
params->frame_name, params->disposition, *params->features,
@@ -21,10 +21,10 @@ index 7ba21901b680d9cf3b220ba85aef3a51c42489da..804c15034d7f5beefa5144d9a7788b08
2121
&no_javascript_access);
2222

2323
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
24-
index fdef236700dfdb69ad3aaa18ae1d870257601f77..ab6a5a975cc9b88ea9ea48d213d5fc49a4efe6a9 100644
24+
index 24f06bcbb318947633229fdc15cd9df540a8d20a..cb218d7605f327de0cea1c66e7545b1377fb1479 100644
2525
--- a/content/browser/web_contents/web_contents_impl.cc
2626
+++ b/content/browser/web_contents/web_contents_impl.cc
27-
@@ -4613,6 +4613,12 @@ FrameTree* WebContentsImpl::CreateNewWindow(
27+
@@ -4664,6 +4664,12 @@ FrameTree* WebContentsImpl::CreateNewWindow(
2828

2929
auto* new_contents_impl = new_contents.get();
3030

@@ -37,7 +37,7 @@ index fdef236700dfdb69ad3aaa18ae1d870257601f77..ab6a5a975cc9b88ea9ea48d213d5fc49
3737
// If the new frame has a name, make sure any SiteInstances that can find
3838
// this named frame have proxies for it. Must be called after
3939
// SetSessionStorageNamespace, since this calls CreateRenderView, which uses
40-
@@ -4654,12 +4660,6 @@ FrameTree* WebContentsImpl::CreateNewWindow(
40+
@@ -4705,12 +4711,6 @@ FrameTree* WebContentsImpl::CreateNewWindow(
4141
AddWebContentsDestructionObserver(new_contents_impl);
4242
}
4343

@@ -66,10 +66,10 @@ index d72ce84100f584832b22058648e7f21ae8325236..4f010247091564573b1511f163c5d874
6666

6767
// Operation result when the renderer asks the browser to create a new window.
6868
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
69-
index 0de68c70e9d18aab035eed9fe1385c0ce0714184..a03833252f0b28695da35e6b51801530e2c595f2 100644
69+
index 62fed61bd87f19363fab39b19a1fdad4074970c5..da00f63496d57d3d0a8b66334f8b6efcd6172f85 100644
7070
--- a/content/public/browser/content_browser_client.cc
7171
+++ b/content/public/browser/content_browser_client.cc
72-
@@ -725,6 +725,8 @@ bool ContentBrowserClient::CanCreateWindow(
72+
@@ -728,6 +728,8 @@ bool ContentBrowserClient::CanCreateWindow(
7373
const std::string& frame_name,
7474
WindowOpenDisposition disposition,
7575
const blink::mojom::WindowFeatures& features,
@@ -79,7 +79,7 @@ index 0de68c70e9d18aab035eed9fe1385c0ce0714184..a03833252f0b28695da35e6b51801530
7979
bool opener_suppressed,
8080
bool* no_javascript_access) {
8181
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
82-
index 44cdba11faf853480b8002383939e9fc07f7d080..f29755bf04da153831da14565e28ca04189c6771 100644
82+
index 406607bd325632892d79f0e5cd3b5fc4b9fe991c..d86c5f709d2c05914800a660fe240768fe8911c6 100644
8383
--- a/content/public/browser/content_browser_client.h
8484
+++ b/content/public/browser/content_browser_client.h
8585
@@ -186,6 +186,7 @@ class NetworkService;
@@ -90,7 +90,7 @@ index 44cdba11faf853480b8002383939e9fc07f7d080..f29755bf04da153831da14565e28ca04
9090
} // namespace network
9191

9292
namespace sandbox {
93-
@@ -1213,6 +1214,8 @@ class CONTENT_EXPORT ContentBrowserClient {
93+
@@ -1228,6 +1229,8 @@ class CONTENT_EXPORT ContentBrowserClient {
9494
const std::string& frame_name,
9595
WindowOpenDisposition disposition,
9696
const blink::mojom::WindowFeatures& features,
@@ -210,7 +210,7 @@ index 78956238f8d959580e928d2590866b2f4da3d218..806b3337ec8a8ad7c89681857b4e81dc
210210

211211
} // namespace blink
212212
diff --git a/third_party/blink/renderer/core/frame/local_dom_window.cc b/third_party/blink/renderer/core/frame/local_dom_window.cc
213-
index 8e3ac9bfa91e306b0e2768f85688ccefd60110b4..93b391526c1f5cc2ad911ee36455beaeb019990d 100644
213+
index d5066c8afed279ab0dd6637f8a59ccce995d652e..13778d16a98f0f5e06ac79a08c2c10ec617293d5 100644
214214
--- a/third_party/blink/renderer/core/frame/local_dom_window.cc
215215
+++ b/third_party/blink/renderer/core/frame/local_dom_window.cc
216216
@@ -2222,6 +2222,8 @@ DOMWindow* LocalDOMWindow::open(v8::Isolate* isolate,

0 commit comments

Comments
 (0)