Title: [137024] trunk/Source/WebCore
- Revision
- 137024
- Author
- [email protected]
- Date
- 2012-12-08 02:37:03 -0800 (Sat, 08 Dec 2012)
Log Message
Build fix after r137003. Wrap NodeMutationObserverData with ENABLE(MUTATION_OBSERVERS).
* dom/NodeRareData.h:
(NodeRareData):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (137023 => 137024)
--- trunk/Source/WebCore/ChangeLog 2012-12-08 10:22:39 UTC (rev 137023)
+++ trunk/Source/WebCore/ChangeLog 2012-12-08 10:37:03 UTC (rev 137024)
@@ -1,3 +1,10 @@
+2012-12-08 Ryosuke Niwa <[email protected]>
+
+ Build fix after r137003. Wrap NodeMutationObserverData with ENABLE(MUTATION_OBSERVERS).
+
+ * dom/NodeRareData.h:
+ (NodeRareData):
+
2012-12-08 Patrick Gansterer <[email protected]>
Build fix for ENABLE(SVG) && !ENABLE(FILTERS) after r136975.
Modified: trunk/Source/WebCore/dom/NodeRareData.h (137023 => 137024)
--- trunk/Source/WebCore/dom/NodeRareData.h 2012-12-08 10:22:39 UTC (rev 137023)
+++ trunk/Source/WebCore/dom/NodeRareData.h 2012-12-08 10:37:03 UTC (rev 137024)
@@ -226,12 +226,14 @@
class NodeRareData : public NodeRareDataBase {
WTF_MAKE_NONCOPYABLE(NodeRareData); WTF_MAKE_FAST_ALLOCATED;
+#if ENABLE(MUTATION_OBSERVERS)
struct NodeMutationObserverData {
Vector<OwnPtr<MutationObserverRegistration> > m_registry;
HashSet<MutationObserverRegistration*> m_transientRegistry;
static PassOwnPtr<NodeMutationObserverData> create() { return adoptPtr(new NodeMutationObserverData); }
};
+#endif
struct NodeMicroDataTokenLists {
RefPtr<DOMSettableTokenList> m_itemProp;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes