Title: [123992] trunk/Source/WebCore
Revision
123992
Author
[email protected]
Date
2012-07-29 18:58:03 -0700 (Sun, 29 Jul 2012)

Log Message

Remove unused method HTMLConstructionSiteTask::take(HTMLConstructionSiteTask&)
https://bugs.webkit.org/show_bug.cgi?id=92601

Patch by Kwang Yul Seo <[email protected]> on 2012-07-29
Reviewed by Adam Barth.

This method was introduced in r104000, but has never been used from the beginning.

No functional change.

* html/parser/HTMLConstructionSite.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (123991 => 123992)


--- trunk/Source/WebCore/ChangeLog	2012-07-30 01:46:58 UTC (rev 123991)
+++ trunk/Source/WebCore/ChangeLog	2012-07-30 01:58:03 UTC (rev 123992)
@@ -1,3 +1,16 @@
+2012-07-29  Kwang Yul Seo  <[email protected]>
+
+        Remove unused method HTMLConstructionSiteTask::take(HTMLConstructionSiteTask&)
+        https://bugs.webkit.org/show_bug.cgi?id=92601
+
+        Reviewed by Adam Barth.
+
+        This method was introduced in r104000, but has never been used from the beginning.
+
+        No functional change.
+
+        * html/parser/HTMLConstructionSite.h:
+
 2012-07-29  Kenichi Ishibashi  <[email protected]>
 
         [Chromium] HarfBuzzShaper can't handle segmented text run

Modified: trunk/Source/WebCore/html/parser/HTMLConstructionSite.h (123991 => 123992)


--- trunk/Source/WebCore/html/parser/HTMLConstructionSite.h	2012-07-30 01:46:58 UTC (rev 123991)
+++ trunk/Source/WebCore/html/parser/HTMLConstructionSite.h	2012-07-30 01:58:03 UTC (rev 123992)
@@ -44,14 +44,6 @@
     {
     }
 
-    void take(HTMLConstructionSiteTask& other)
-    {
-        parent = other.parent.release();
-        nextChild = other.nextChild.release();
-        child = other.child.release();
-        selfClosing = other.selfClosing;
-    }
-
     RefPtr<ContainerNode> parent;
     RefPtr<Node> nextChild;
     RefPtr<Node> child;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to