Title: [235573] trunk/Source/WebCore
Revision
235573
Author
[email protected]
Date
2018-08-31 16:14:06 -0700 (Fri, 31 Aug 2018)

Log Message

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: trunk/Source/WebCore/ChangeLog (235572 => 235573)


--- trunk/Source/WebCore/ChangeLog	2018-08-31 22:50:08 UTC (rev 235572)
+++ trunk/Source/WebCore/ChangeLog	2018-08-31 23:14:06 UTC (rev 235573)
@@ -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  Chris Dumez  <[email protected]>
 
         [ WK2 ] http/tests/workers/service/client-*-page-cache.html LayoutTests are flaky

Modified: trunk/Source/WebCore/platform/network/FormData.cpp (235572 => 235573)


--- trunk/Source/WebCore/platform/network/FormData.cpp	2018-08-31 22:50:08 UTC (rev 235572)
+++ trunk/Source/WebCore/platform/network/FormData.cpp	2018-08-31 23:14:06 UTC (rev 235573)
@@ -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