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-01-08 23:59:47 +00:00
|
|
|
index b43ca24b2595bbd20fb5cfa68a22ebec87acda33..496e5d16d49977cb2107a7101064093be19b1515 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
|
2018-09-21 00:30:26 +00:00
|
|
|
@@ -177,11 +177,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_);
|
|
|
|
|