Title: [239428] trunk/Source/WebCore
Revision
239428
Author
mcatanz...@igalia.com
Date
2018-12-19 20:46:27 -0800 (Wed, 19 Dec 2018)

Log Message

Unreviewed, fix GTK build after r239410

It added a new file to the build, breaking the unified sources magic that obscured a bug in
URLSoup.h. It forward-declares URL, but this never worked unless the URL.h header was
included via another source file in the unified source bundle.

* platform/network/soup/URLSoup.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (239427 => 239428)


--- trunk/Source/WebCore/ChangeLog	2018-12-20 04:41:11 UTC (rev 239427)
+++ trunk/Source/WebCore/ChangeLog	2018-12-20 04:46:27 UTC (rev 239428)
@@ -1,3 +1,13 @@
+2018-12-19  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, fix GTK build after r239410
+
+        It added a new file to the build, breaking the unified sources magic that obscured a bug in
+        URLSoup.h. It forward-declares URL, but this never worked unless the URL.h header was
+        included via another source file in the unified source bundle.
+
+        * platform/network/soup/URLSoup.h:
+
 2018-12-19  Chris Dumez  <cdu...@apple.com>
 
         wtf/Optional.h: move-constructor and move-assignment operator should disengage the value being moved from

Modified: trunk/Source/WebCore/platform/network/soup/URLSoup.h (239427 => 239428)


--- trunk/Source/WebCore/platform/network/soup/URLSoup.h	2018-12-20 04:41:11 UTC (rev 239427)
+++ trunk/Source/WebCore/platform/network/soup/URLSoup.h	2018-12-20 04:46:27 UTC (rev 239428)
@@ -32,6 +32,6 @@
 }
 
 namespace WebCore {
-URL soupURIToURL(SoupURI*);
+WTF::URL soupURIToURL(SoupURI*);
 GUniquePtr<SoupURI> urlToSoupURI(const WTF::URL&);
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to