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

Unified Diff: third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.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/svg/line/SVGInlineTextBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp b/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp
index 40eee7188222f0b7d961bb1787ed51ebc4b5c097..15c6eb2d15b29f6d32caa7f43eab8c84169769e2 100644
--- a/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp
@@ -190,7 +190,7 @@ TextRun SVGInlineTextBox::constructTextRun(
0, // padding, only relevant for justified text, not relevant for SVG
TextRun::AllowTrailingExpansion, direction(),
dirOverride() ||
- style.rtlOrdering() == VisualOrder /* directionalOverride */);
+ style.rtlOrdering() == EOrder::Visual /* directionalOverride */);
if (fragment.length) {
if (text.is8Bit())

Powered by Google App Engine
This is Rietveld 408576698