Title: [286945] trunk/Source/WebCore
Revision
286945
Author
ape...@igalia.com
Date
2021-12-13 02:49:41 -0800 (Mon, 13 Dec 2021)

Log Message

Fix non-unified builds after r286853

Unreviewed build fix.

No new tests needed.

* loader/SubresourceIntegrity.h: Add missing <optional> header inclusion, forward-declare
EncodedResourceCryptographicDigest type.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (286944 => 286945)


--- trunk/Source/WebCore/ChangeLog	2021-12-13 10:41:06 UTC (rev 286944)
+++ trunk/Source/WebCore/ChangeLog	2021-12-13 10:49:41 UTC (rev 286945)
@@ -1,3 +1,14 @@
+2021-12-13  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Fix non-unified builds after r286853
+
+        Unreviewed build fix.
+
+        No new tests needed.
+
+        * loader/SubresourceIntegrity.h: Add missing <optional> header inclusion, forward-declare
+        EncodedResourceCryptographicDigest type.
+
 2021-12-13  Youenn Fablet  <you...@apple.com>
 
         Fix ServiceWorker downloads

Modified: trunk/Source/WebCore/loader/SubresourceIntegrity.h (286944 => 286945)


--- trunk/Source/WebCore/loader/SubresourceIntegrity.h	2021-12-13 10:41:06 UTC (rev 286944)
+++ trunk/Source/WebCore/loader/SubresourceIntegrity.h	2021-12-13 10:49:41 UTC (rev 286945)
@@ -25,11 +25,13 @@
 
 #pragma once
 
+#include <optional>
 #include <wtf/Forward.h>
 
 namespace WebCore {
 
 class CachedResource;
+struct EncodedResourceCryptographicDigest;
 
 bool matchIntegrityMetadata(const CachedResource&, const String& integrityMetadata);
 String integrityMismatchDescription(const CachedResource&, const String& integrityMetadata);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to