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

Unified Diff: Source/core/layout/line/InlineFlowBox.cpp

Issue 1261653002: Move SelectionState out of LayoutObject and into Line Layout API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/layout/line/InlineFlowBox.cpp
diff --git a/Source/core/layout/line/InlineFlowBox.cpp b/Source/core/layout/line/InlineFlowBox.cpp
index f50f66437d923356923fed4071d0cb91e4581d60..cca659c109af879b8c1408f96fafe35789735466 100644
--- a/Source/core/layout/line/InlineFlowBox.cpp
+++ b/Source/core/layout/line/InlineFlowBox.cpp
@@ -1083,9 +1083,9 @@ InlineBox* InlineFlowBox::lastLeafChild() const
return leaf;
}
-LayoutObject::SelectionState InlineFlowBox::selectionState() const
+SelectionState InlineFlowBox::selectionState() const
{
- return LayoutObject::SelectionNone;
+ return SelectionNone;
}
bool InlineFlowBox::canAccommodateEllipsis(bool ltr, int blockEdge, int ellipsisWidth) const

Powered by Google App Engine
This is Rietveld 408576698