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

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

Issue 2546333002: Changed Order to an enum class and renamed its members (Closed)
Patch Set: Created 4 years 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: third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
index c82fb1e91220dc534395ae116707bd733da56d94..e00dda44dc6a4fd3138136e06821512d86ce8af8 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
+++ b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
@@ -1572,7 +1572,7 @@ void InlineFlowBox::collectLeafBoxesInLogicalOrder(
leafBoxesInLogicalOrder.append(leaf);
}
- if (getLineLayoutItem().style()->rtlOrdering() == VisualOrder)
+ if (getLineLayoutItem().style()->rtlOrdering() == EOrder::Visual)
return;
// Reverse of reordering of the line (L2 according to Bidi spec):

Powered by Google App Engine
This is Rietveld 408576698