Title: [147033] trunk/Source/WebCore
Revision
147033
Author
fmal...@chromium.org
Date
2013-03-27 17:18:09 -0700 (Wed, 27 Mar 2013)

Log Message

Remove unused RenderLayer::renderBox{X,Y} methods
https://bugs.webkit.org/show_bug.cgi?id=113408

Reviewed by Simon Fraser.

Minor cleanup - renderBoxX() and renderBox() are no longer used.

No new tests: no functional changes.

* rendering/RenderLayer.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (147032 => 147033)


--- trunk/Source/WebCore/ChangeLog	2013-03-28 00:18:06 UTC (rev 147032)
+++ trunk/Source/WebCore/ChangeLog	2013-03-28 00:18:09 UTC (rev 147033)
@@ -1,3 +1,16 @@
+2013-03-27  Florin Malita  <fmal...@chromium.org>
+
+        Remove unused RenderLayer::renderBox{X,Y} methods
+        https://bugs.webkit.org/show_bug.cgi?id=113408
+
+        Reviewed by Simon Fraser.
+
+        Minor cleanup - renderBoxX() and renderBox() are no longer used.
+
+        No new tests: no functional changes.
+
+        * rendering/RenderLayer.h:
+
 2013-03-27  PhistucK  <phist...@chromium.org>
 
         Web Inspector: Plumb and expose cookie clearing options throughout the Resources Cookies tree and views

Modified: trunk/Source/WebCore/rendering/RenderLayer.h (147032 => 147033)


--- trunk/Source/WebCore/rendering/RenderLayer.h	2013-03-28 00:18:06 UTC (rev 147032)
+++ trunk/Source/WebCore/rendering/RenderLayer.h	2013-03-28 00:18:09 UTC (rev 147033)
@@ -920,8 +920,6 @@
     void setLastChild(RenderLayer* last) { m_last = last; }
 
     LayoutPoint renderBoxLocation() const { return renderer()->isBox() ? toRenderBox(renderer())->location() : LayoutPoint(); }
-    LayoutUnit renderBoxX() const { return renderBoxLocation().x(); }
-    LayoutUnit renderBoxY() const { return renderBoxLocation().y(); }
 
     void collectLayers(bool includeHiddenLayers, CollectLayersBehavior, OwnPtr<Vector<RenderLayer*> >&, OwnPtr<Vector<RenderLayer*> >&);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to