From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Thu, 9 Mar 2023 01:28:56 -0800 Subject: feat: expose DocumentLoader::SetDefersLoading on WebDocumentLoader This allows embedders to call SetDefersLoading without reaching into Blink internals. Electron uses this to defer page loading until the preload scripts have finished executing. This might be upstreamable? diff --git a/third_party/blink/public/web/web_document_loader.h b/third_party/blink/public/web/web_document_loader.h index 33e23680b927d417b0882c7572fe32dc2d2b90c3..9413492f8e0fd6c5371c66329e1ad6d4163ba670 100644 --- a/third_party/blink/public/web/web_document_loader.h +++ b/third_party/blink/public/web/web_document_loader.h @@ -38,6 +38,7 @@ #include "third_party/blink/public/platform/cross_variant_mojo_util.h" #include "third_party/blink/public/platform/web_archive_info.h" #include "third_party/blink/public/platform/web_common.h" +#include "third_party/blink/public/platform/web_loader_freeze_mode.h" #include "third_party/blink/public/platform/web_source_location.h" #include "third_party/blink/public/web/web_navigation_type.h" @@ -63,6 +64,8 @@ class BLINK_EXPORT WebDocumentLoader { virtual std::unique_ptr Clone() = 0; }; + virtual void SetDefersLoading(WebLoaderFreezeMode) = 0; + static bool WillLoadUrlAsEmpty(const WebURL&); // Returns the http referrer of original request which initited this load. diff --git a/third_party/blink/renderer/core/loader/document_loader.h b/third_party/blink/renderer/core/loader/document_loader.h index 01b97e569a69fb1395e63492ac75432d648bb71f..6e58d859e2afd3bd8b9b17c53ba9ccc6dbdcd458 100644 --- a/third_party/blink/renderer/core/loader/document_loader.h +++ b/third_party/blink/renderer/core/loader/document_loader.h @@ -325,7 +325,7 @@ class CORE_EXPORT DocumentLoader : public GarbageCollected, soft_navigation_heuristics_task_id, bool should_skip_screenshot); - void SetDefersLoading(LoaderFreezeMode); + void SetDefersLoading(LoaderFreezeMode) override; DocumentLoadTiming& GetTiming() { return document_load_timing_; }