Title: [145021] trunk/Source/WebCore
Revision
145021
Author
[email protected]
Date
2013-03-06 18:30:15 -0800 (Wed, 06 Mar 2013)

Log Message

Remove WebCore::Node::isActiveNode() since it isn't called anywhere.
https://bugs.webkit.org/show_bug.cgi?id=111646

Reviewed by Kentaro Hara.

No new tests. This removes dead code.

* dom/Node.h:
(Node):
* html/HTMLAudioElement.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (145020 => 145021)


--- trunk/Source/WebCore/ChangeLog	2013-03-07 02:22:36 UTC (rev 145020)
+++ trunk/Source/WebCore/ChangeLog	2013-03-07 02:30:15 UTC (rev 145021)
@@ -1,3 +1,16 @@
+2013-03-06  Aaron Colwell  <[email protected]>
+
+        Remove WebCore::Node::isActiveNode() since it isn't called anywhere.
+        https://bugs.webkit.org/show_bug.cgi?id=111646
+
+        Reviewed by Kentaro Hara.
+
+        No new tests. This removes dead code.
+
+        * dom/Node.h:
+        (Node):
+        * html/HTMLAudioElement.h:
+
 2013-03-06  Abhishek Arya  <[email protected]>
 
         Crash in SVGViewSpec::viewTarget

Modified: trunk/Source/WebCore/dom/Node.h (145020 => 145021)


--- trunk/Source/WebCore/dom/Node.h	2013-03-07 02:22:36 UTC (rev 145020)
+++ trunk/Source/WebCore/dom/Node.h	2013-03-07 02:30:15 UTC (rev 145021)
@@ -229,8 +229,6 @@
     Node* lastDescendant() const;
     Node* firstDescendant() const;
 
-    virtual bool isActiveNode() const { return false; }
-    
     // Other methods (not part of DOM)
 
     bool isElementNode() const { return getFlag(IsElementFlag); }

Modified: trunk/Source/WebCore/html/HTMLAudioElement.h (145020 => 145021)


--- trunk/Source/WebCore/html/HTMLAudioElement.h	2013-03-07 02:22:36 UTC (rev 145020)
+++ trunk/Source/WebCore/html/HTMLAudioElement.h	2013-03-07 02:30:15 UTC (rev 145021)
@@ -41,8 +41,6 @@
 
     virtual bool hasPendingActivity() const { return isPlaying() || HTMLMediaElement::hasPendingActivity(); }
 
-    virtual bool isActiveNode() const { return true; }
-
 private:
     HTMLAudioElement(const QualifiedName&, Document*, bool);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to