Title: [125006] trunk/Source/WebCore
Revision
125006
Author
[email protected]
Date
2012-08-08 00:51:42 -0700 (Wed, 08 Aug 2012)

Log Message

Remove an unused member variable.

Unreviewed, build fix for r124990.

* dom/ContainerNode.h:
(WebCore::ChildNodesLazySnapshot::ChildNodesLazySnapshot):
(ChildNodesLazySnapshot):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (125005 => 125006)


--- trunk/Source/WebCore/ChangeLog	2012-08-08 07:39:14 UTC (rev 125005)
+++ trunk/Source/WebCore/ChangeLog	2012-08-08 07:51:42 UTC (rev 125006)
@@ -1,3 +1,13 @@
+2012-08-08  Kentaro Hara  <[email protected]>
+
+        Remove an unused member variable.
+
+        Unreviewed, build fix for r124990.
+
+        * dom/ContainerNode.h:
+        (WebCore::ChildNodesLazySnapshot::ChildNodesLazySnapshot):
+        (ChildNodesLazySnapshot):
+
 2012-08-07  Vsevolod Vlasov  <[email protected]>
 
         Web Inspector: TabbedPane should use floating point width values for measuring.

Modified: trunk/Source/WebCore/dom/ContainerNode.h (125005 => 125006)


--- trunk/Source/WebCore/dom/ContainerNode.h	2012-08-08 07:39:14 UTC (rev 125005)
+++ trunk/Source/WebCore/dom/ContainerNode.h	2012-08-08 07:51:42 UTC (rev 125006)
@@ -306,8 +306,7 @@
     WTF_MAKE_FAST_ALLOCATED;
 public:
     explicit ChildNodesLazySnapshot(Node* parentNode)
-        : m_parentNode(parentNode)
-        , m_currentNode(parentNode->firstChild())
+        : m_currentNode(parentNode->firstChild())
         , m_currentIndex(0)
     {
         m_nextSnapshot = latestSnapshot;
@@ -361,7 +360,6 @@
 private:
     static ChildNodesLazySnapshot* latestSnapshot;
 
-    Node* m_parentNode;
     Node* m_currentNode;
     unsigned m_currentIndex;
     OwnPtr<Vector<RefPtr<Node> > > m_childNodes; // Lazily instantiated.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to