forked from pool/nodejs-electron
- Update to 22.0.2
* ABI break: NODE_MODULE_VERSION is now 110. Native modules may need recompiling
* Chromium to 108.0.5359.179
* Node v16.17.1
* V8 v10.8
* Added WebContents input-event event.
* Deprecated BrowserWindow scroll-touch-* events.
* The deprecated new-window event has been removed.
* Added contextBridge.exposeInIsolatedWorld(worldId, key, api) to expose
an API to an isolatedWorld within a renderer from a preload script.
* Added webContents.close() method.
* Added new UtilityProcess API to launch chromium child process with node integration.
* Added new WebContents event content-bounds-updated.
* Added support for navigator.mediaDevices.getDisplayMedia via a new
session handler, ses.setDisplayMediaRequestHandler.
* Added support for serialPort.forget() as well as a new event
serial-port-revoked emitted when a given origin is revoked.
- Drop patches applied upstream
* argument_spec-missing-isnan-isinf.patch
* chromium-103.0.5060.53-python3-do-not-use-deprecated-mode-U.patch
* content_language_parser-missing-string.patch
* gtk_ui_platform_stub-incomplete-type-LinuxInputMethodContext.patch
* node-system-libs.patch
* pending_beacon_dispatcher-virtual-functions-cannot-be-constexpr.patch
* std_lib_extras-missing-intptr_t.patch
* system-abseil-missing-shims.patch
- Re-add electron_serial_delegate-ambiguous-Observer.patch due to upstream reintroducing the invalid code
- Add patches to fix build errors
* chromium-108-abseil-shims.patch
* crashpad-elf_image_reader-ProgramHeaderTableSpecific-expected-unqualified-id.patch
* document_loader-private-DecodedBodyData.patch
* first_party_set_parser-IssueWithMetadata-no-known-conversion.patch
* print_dialog_gtk-no-kEnableOopPrintDriversJobPrint.patch
* swiftshader-LLVMJIT-AddressSanitizerPass-dead-code-remove.patch
- Conditionally reverse upstream changes to fix build with old harfbuzz
* harfbuzz-replace-chromium-scoped-type.patch
- Switch to bundled libjxl on Fedora 36 due to system version being too old
OBS-URL: https://build.opensuse.org/request/show/1059202
OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs-electron?expand=0&rev=57
43 lines
1.7 KiB
Diff
43 lines
1.7 KiB
Diff
From 82827b0a8683c5c9c7285db48cefb7fa8ea92ffe Mon Sep 17 00:00:00 2001
|
|
From: Jose Dapena Paz <jdapena@igalia.com>
|
|
Date: Thu, 20 Oct 2022 16:27:27 +0000
|
|
Subject: [PATCH] GCC: declare DocumentLoader::DecodedBodyData as public
|
|
|
|
Fix build with GCC as DocumentLoader::DecodedBodyData was not
|
|
declaring SameSizeAsDocumentLoader. This works in Clang because
|
|
declaring it as friend of DocumentLoader implicitly declares it
|
|
as friend of its class members. But GCC does not accept that.
|
|
|
|
Bug: 819294
|
|
Change-Id: Iba6a4138fbd90831e7a65fae8445ad4b1736594f
|
|
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3963839
|
|
Commit-Queue: José Dapena Paz <jdapena@igalia.com>
|
|
Reviewed-by: Nate Chapin <japhet@chromium.org>
|
|
Cr-Commit-Position: refs/heads/main@{#1061645}
|
|
---
|
|
|
|
diff --git a/third_party/blink/renderer/core/loader/document_loader.h b/third_party/blink/renderer/core/loader/document_loader.h
|
|
index b22fe2a..37a4230 100644
|
|
--- a/third_party/blink/renderer/core/loader/document_loader.h
|
|
+++ b/third_party/blink/renderer/core/loader/document_loader.h
|
|
@@ -434,6 +434,11 @@
|
|
const KURL& url,
|
|
const ResourceResponse& response);
|
|
|
|
+ // This needs to be kept as public to be accessible from
|
|
+ // SameSizeAsDocumentLoader as GCC will fail to allow access
|
|
+ // even if it is friend of DocumentLoader
|
|
+ class DecodedBodyData;
|
|
+
|
|
protected:
|
|
// Based on its MIME type, if the main document's response corresponds to an
|
|
// MHTML archive, then every resources will be loaded from this archive.
|
|
@@ -465,7 +470,6 @@
|
|
friend struct SameSizeAsDocumentLoader;
|
|
class BodyData;
|
|
class EncodedBodyData;
|
|
- class DecodedBodyData;
|
|
|
|
Frame* CalculateOwnerFrame();
|
|
scoped_refptr<SecurityOrigin> CalculateOrigin(Document* owner_document);
|