Title: [236131] releases/WebKitGTK/webkit-2.22/Source/WebCore
Revision
236131
Author
[email protected]
Date
2018-09-18 08:39:35 -0700 (Tue, 18 Sep 2018)

Log Message

Merge r235573 - Compilation error in FormData.cpp: incomplete type 'WebCore::SharedBuffer'
https://bugs.webkit.org/show_bug.cgi?id=189207

Reviewed by Youenn Fablet.

If FormData.cpp is compiled alone (non-unified) or if it is the first file compiled in
a unified build, SharedBuffer.h is not included.

* platform/network/FormData.cpp:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.22/Source/WebCore/ChangeLog (236130 => 236131)


--- releases/WebKitGTK/webkit-2.22/Source/WebCore/ChangeLog	2018-09-18 15:39:30 UTC (rev 236130)
+++ releases/WebKitGTK/webkit-2.22/Source/WebCore/ChangeLog	2018-09-18 15:39:35 UTC (rev 236131)
@@ -1,3 +1,15 @@
+2018-08-31  Jer Noble  <[email protected]>
+
+        Compilation error in FormData.cpp: incomplete type 'WebCore::SharedBuffer'
+        https://bugs.webkit.org/show_bug.cgi?id=189207
+
+        Reviewed by Youenn Fablet.
+
+        If FormData.cpp is compiled alone (non-unified) or if it is the first file compiled in
+        a unified build, SharedBuffer.h is not included.
+
+        * platform/network/FormData.cpp:
+
 2018-08-31  John Wilander  <[email protected]>
 
         Storage Access API: Maintain access through same-site navigations

Modified: releases/WebKitGTK/webkit-2.22/Source/WebCore/platform/network/FormData.cpp (236130 => 236131)


--- releases/WebKitGTK/webkit-2.22/Source/WebCore/platform/network/FormData.cpp	2018-09-18 15:39:30 UTC (rev 236130)
+++ releases/WebKitGTK/webkit-2.22/Source/WebCore/platform/network/FormData.cpp	2018-09-18 15:39:35 UTC (rev 236131)
@@ -32,6 +32,7 @@
 #include "FileSystem.h"
 #include "FormDataBuilder.h"
 #include "Page.h"
+#include "SharedBuffer.h"
 #include "TextEncoding.h"
 #include "ThreadableBlobRegistry.h"
 #include <wtf/text/LineEnding.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to