Title: [286830] trunk/Source/WebKit
Revision
286830
Author
[email protected]
Date
2021-12-09 20:48:45 -0800 (Thu, 09 Dec 2021)

Log Message

[Playstation] Fix build break after r286751 with INTELLIGENT_TRACKING_PREVENTION enabled
https://bugs.webkit.org/show_bug.cgi?id=234095

Patch by Jigen Zhou <[email protected]> on 2021-12-09
Reviewed by Darin Adler.

Added a forward declaration of class ResourceError to NetworkSession.h to resolve
a compiling error. No new test is need since no behavior change is expected.

* NetworkProcess/NetworkSession.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (286829 => 286830)


--- trunk/Source/WebKit/ChangeLog	2021-12-10 04:46:48 UTC (rev 286829)
+++ trunk/Source/WebKit/ChangeLog	2021-12-10 04:48:45 UTC (rev 286830)
@@ -1,3 +1,15 @@
+2021-12-09  Jigen Zhou  <[email protected]>
+
+        [Playstation] Fix build break after r286751 with INTELLIGENT_TRACKING_PREVENTION enabled
+        https://bugs.webkit.org/show_bug.cgi?id=234095
+
+        Reviewed by Darin Adler.
+
+        Added a forward declaration of class ResourceError to NetworkSession.h to resolve
+        a compiling error. No new test is need since no behavior change is expected.
+
+        * NetworkProcess/NetworkSession.h:
+
 2021-12-09  Devin Rousso  <[email protected]>
 
         Add a `DOMPasteAccessCategory` to control which pasteboard the WebProcess is granted access to when pasting

Modified: trunk/Source/WebKit/NetworkProcess/NetworkSession.h (286829 => 286830)


--- trunk/Source/WebKit/NetworkProcess/NetworkSession.h	2021-12-10 04:46:48 UTC (rev 286829)
+++ trunk/Source/WebKit/NetworkProcess/NetworkSession.h	2021-12-10 04:48:45 UTC (rev 286830)
@@ -54,6 +54,7 @@
 class CertificateInfo;
 class NetworkStorageSession;
 class ResourceRequest;
+class ResourceError;
 enum class IncludeHttpOnlyCookies : bool;
 enum class ShouldSample : bool;
 struct SecurityOriginData;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to