Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(741)

Unified Diff: Source/core/rendering/InlineBox.cpp

Issue 620753006: Rendering API cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address jchaffraix remarks Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/InlineBox.cpp
diff --git a/Source/core/rendering/InlineBox.cpp b/Source/core/rendering/InlineBox.cpp
index 05ef4904bbff1806637c720f74cfa6d33f557b18..2bc0ba84ceb49dd432c37f98022724a4ac14e4c2 100644
--- a/Source/core/rendering/InlineBox.cpp
+++ b/Source/core/rendering/InlineBox.cpp
@@ -317,13 +317,6 @@ FloatPoint InlineBox::locationIncludingFlipping()
return FloatPoint(block.width() - width() - x(), y());
}
-void InlineBox::flipForWritingMode(FloatRect& rect)
-{
- if (!renderer().style()->isFlippedBlocksWritingMode())
- return;
- root().block().flipForWritingMode(rect);
-}
-
FloatPoint InlineBox::flipForWritingMode(const FloatPoint& point)
{
if (!renderer().style()->isFlippedBlocksWritingMode())

Powered by Google App Engine
This is Rietveld 408576698