Title: [157634] trunk/Source/WebCore
Revision
157634
Author
[email protected]
Date
2013-10-18 09:05:08 -0700 (Fri, 18 Oct 2013)

Log Message

Unreviewed build fix for --no-svg option.
m_svgStyle of RenderStyle is guarded with the ENABLE_SVG flag.

* rendering/style/RenderStyle.cpp:
(WebCore::RenderStyle::RenderStyle):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (157633 => 157634)


--- trunk/Source/WebCore/ChangeLog	2013-10-18 15:23:51 UTC (rev 157633)
+++ trunk/Source/WebCore/ChangeLog	2013-10-18 16:05:08 UTC (rev 157634)
@@ -1,3 +1,11 @@
+2013-10-18  ChangSeok Oh  <[email protected]>
+
+        Unreviewed build fix for --no-svg option.
+        m_svgStyle of RenderStyle is guarded with the ENABLE_SVG flag.
+
+        * rendering/style/RenderStyle.cpp:
+        (WebCore::RenderStyle::RenderStyle):
+
 2013-10-17  Brady Eidson  <[email protected]>
 
         Cleanup the Modules group in the WebCore.xcodeproj

Modified: trunk/Source/WebCore/rendering/style/RenderStyle.cpp (157633 => 157634)


--- trunk/Source/WebCore/rendering/style/RenderStyle.cpp	2013-10-18 15:23:51 UTC (rev 157633)
+++ trunk/Source/WebCore/rendering/style/RenderStyle.cpp	2013-10-18 16:05:08 UTC (rev 157634)
@@ -135,7 +135,9 @@
     , rareNonInheritedData(StyleRareNonInheritedData::create())
     , rareInheritedData(StyleRareInheritedData::create())
     , inherited(StyleInheritedData::create())
+#if ENABLE(SVG)
     , m_svgStyle(SVGRenderStyle::create())
+#endif
 {
     setBitDefaults();
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to