2018-10-24 18:24:11 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-09-21 00:30:26 +00:00
|
|
|
From: Samuel Attard <samuel.r.attard@gmail.com>
|
|
|
|
Date: Thu, 20 Sep 2018 17:50:24 -0700
|
|
|
|
Subject: blink_initialization_order.patch
|
|
|
|
|
|
|
|
Backport of https://chromium-review.googlesource.com/c/chromium/src/+/1030530
|
|
|
|
to fix the order of V8 and Blink initialization. Also fixes order
|
|
|
|
of DidCreateScriptContext notification with initialization of window globals
|
|
|
|
to fix electron/electron#13787. The backport landed in Chromium 67 but the
|
|
|
|
DidCreateScriptContext re-ordering needs to be upstreamed or kept indefinitely
|
|
|
|
|
2018-09-14 05:02:16 +00:00
|
|
|
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
|
2019-05-01 00:18:22 +00:00
|
|
|
index 59af62ece264de7f392f8b13ae373700d6aafc56..2d547910eaef8ba2194a012f8a6c9a444b7de741 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/third_party/blink/renderer/bindings/core/v8/local_window_proxy.cc
|
|
|
|
+++ b/third_party/blink/renderer/bindings/core/v8/local_window_proxy.cc
|
2019-05-01 00:18:22 +00:00
|
|
|
@@ -191,11 +191,10 @@ void LocalWindowProxy::Initialize() {
|
2018-09-14 05:02:16 +00:00
|
|
|
GetFrame()->IsMainFrame());
|
2018-09-21 00:30:26 +00:00
|
|
|
MainThreadDebugger::Instance()->ContextCreated(script_state_, GetFrame(),
|
|
|
|
origin);
|
2018-09-14 05:02:16 +00:00
|
|
|
+ InstallConditionalFeatures();
|
|
|
|
GetFrame()->Client()->DidCreateScriptContext(context, world_->GetWorldId());
|
|
|
|
}
|
|
|
|
|
|
|
|
- InstallConditionalFeatures();
|
|
|
|
-
|
2019-01-08 23:59:47 +00:00
|
|
|
// This needs to go after everything else since it accesses the window object.
|
|
|
|
InitializeV8ExtrasBinding(script_state_);
|
|
|
|
|