Index: third_party/WebKit/Source/core/layout/ng/ng_absolute_utils_test.cc |
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_absolute_utils_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_absolute_utils_test.cc |
index 94113390fe3eb3e58071d9db1ec792d91af0c4ee..191fb9c6caa69e2de2f0362b3d69935196b32c80 100644 |
--- a/third_party/WebKit/Source/core/layout/ng/ng_absolute_utils_test.cc |
+++ b/third_party/WebKit/Source/core/layout/ng/ng_absolute_utils_test.cc |
@@ -28,16 +28,16 @@ class NGAbsoluteUtilsTest : public ::testing::Test { |
NGConstraintSpaceBuilder builder(kHorizontalTopBottom); |
builder.SetAvailableSize(container_size_); |
ltr_space_ = builder.SetWritingMode(kHorizontalTopBottom) |
- .SetTextDirection(LTR) |
+ .SetTextDirection(TextDirection::Ltr) |
.ToConstraintSpace(); |
rtl_space_ = builder.SetWritingMode(kHorizontalTopBottom) |
- .SetTextDirection(RTL) |
+ .SetTextDirection(TextDirection::Rtl) |
.ToConstraintSpace(); |
vertical_lr_space_ = builder.SetWritingMode(kVerticalLeftRight) |
- .SetTextDirection(LTR) |
+ .SetTextDirection(TextDirection::Ltr) |
.ToConstraintSpace(); |
vertical_rl_space_ = builder.SetWritingMode(kVerticalLeftRight) |
- .SetTextDirection(LTR) |
+ .SetTextDirection(TextDirection::Ltr) |
.ToConstraintSpace(); |
} |