Title: [241027] trunk/Source/WebCore
Revision
241027
Author
[email protected]
Date
2019-02-06 10:22:37 -0800 (Wed, 06 Feb 2019)

Log Message

[SVG] fix SVGURIReference build by including SVGElement
https://bugs.webkit.org/show_bug.cgi?id=194292

Patch by Olivier Blin <[email protected]> on 2019-02-06
Reviewed by Michael Catanzaro.

* svg/SVGURIReference.h:
SVGURIReference is making use of SVGElement in its constructor, but
it was not declared.

The issue was not seen in unified builds because it was grouped with
other files including SVGElement.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (241026 => 241027)


--- trunk/Source/WebCore/ChangeLog	2019-02-06 17:58:23 UTC (rev 241026)
+++ trunk/Source/WebCore/ChangeLog	2019-02-06 18:22:37 UTC (rev 241027)
@@ -1,3 +1,17 @@
+2019-02-06  Olivier Blin  <[email protected]>
+
+        [SVG] fix SVGURIReference build by including SVGElement
+        https://bugs.webkit.org/show_bug.cgi?id=194292
+
+        Reviewed by Michael Catanzaro.
+
+        * svg/SVGURIReference.h:
+        SVGURIReference is making use of SVGElement in its constructor, but
+        it was not declared.
+
+        The issue was not seen in unified builds because it was grouped with
+        other files including SVGElement.
+
 2019-02-06  Zalan Bujtas  <[email protected]>
 
         [LFC][IFC] Move line layout code to a dedicated file

Modified: trunk/Source/WebCore/svg/SVGURIReference.cpp (241026 => 241027)


--- trunk/Source/WebCore/svg/SVGURIReference.cpp	2019-02-06 17:58:23 UTC (rev 241026)
+++ trunk/Source/WebCore/svg/SVGURIReference.cpp	2019-02-06 18:22:37 UTC (rev 241027)
@@ -25,6 +25,7 @@
 #include "Document.h"
 #include "Element.h"
 #include "SVGAttributeOwnerProxy.h"
+#include "SVGElement.h"
 #include <wtf/URL.h>
 #include "XLinkNames.h"
 

Modified: trunk/Source/WebCore/svg/SVGURIReference.h (241026 => 241027)


--- trunk/Source/WebCore/svg/SVGURIReference.h	2019-02-06 17:58:23 UTC (rev 241026)
+++ trunk/Source/WebCore/svg/SVGURIReference.h	2019-02-06 18:22:37 UTC (rev 241027)
@@ -27,6 +27,8 @@
 
 namespace WebCore {
 
+class SVGElement;
+
 template<typename OwnerType, typename... BaseTypes>
 class SVGAttributeRegistry;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to