Title: [137025] trunk/Source/WebCore
Revision
137025
Author
x...@webkit.org
Date
2012-12-08 02:44:27 -0800 (Sat, 08 Dec 2012)

Log Message

Build fix after r137003. Wrap Microdata only sections with ENABLE(MICRODATA).

* dom/NodeRareData.h:
(NodeRareData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (137024 => 137025)


--- trunk/Source/WebCore/ChangeLog	2012-12-08 10:37:03 UTC (rev 137024)
+++ trunk/Source/WebCore/ChangeLog	2012-12-08 10:44:27 UTC (rev 137025)
@@ -1,3 +1,10 @@
+2012-12-08  Xan Lopez  <xlo...@igalia.com>
+
+        Build fix after r137003. Wrap Microdata only sections with ENABLE(MICRODATA).
+
+        * dom/NodeRareData.h:
+        (NodeRareData):
+
 2012-12-08  Ryosuke Niwa  <rn...@webkit.org>
 
         Build fix after r137003. Wrap NodeMutationObserverData with ENABLE(MUTATION_OBSERVERS).

Modified: trunk/Source/WebCore/dom/NodeRareData.h (137024 => 137025)


--- trunk/Source/WebCore/dom/NodeRareData.h	2012-12-08 10:37:03 UTC (rev 137024)
+++ trunk/Source/WebCore/dom/NodeRareData.h	2012-12-08 10:44:27 UTC (rev 137025)
@@ -235,6 +235,7 @@
     };
 #endif
 
+#if ENABLE(MICRODATA)
     struct NodeMicroDataTokenLists {
         RefPtr<DOMSettableTokenList> m_itemProp;
         RefPtr<DOMSettableTokenList> m_itemRef;
@@ -242,6 +243,7 @@
 
         static PassOwnPtr<NodeMicroDataTokenLists> create() { return adoptPtr(new NodeMicroDataTokenLists); }
     };
+#endif
 
 public:    
     NodeRareData(Document* document)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to