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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_absolute_utils_test.cc

Issue 2536323003: [LayoutNG] Fix enum values to conform to kEnumName in style guide. (Closed)
Patch Set: rebase. 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 becc4f9831e03fde9f36cea134d5e66f52403fef..d2905ffae097a3500d27f259c954edac80bc0df6 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
@@ -25,18 +25,18 @@ class NGAbsoluteUtilsTest : public ::testing::Test {
style_->setBorderBottomStyle(EBorderStyle::BorderStyleSolid);
style_->setBoxSizing(EBoxSizing::BoxSizingBorderBox);
container_size_ = NGLogicalSize(LayoutUnit(200), LayoutUnit(300));
- NGConstraintSpaceBuilder builder(HorizontalTopBottom);
+ NGConstraintSpaceBuilder builder(kHorizontalTopBottom);
ltr_space_ = new NGConstraintSpace(
- HorizontalTopBottom, LTR,
+ kHorizontalTopBottom, LTR,
builder.SetAvailableSize(container_size_).ToConstraintSpace());
rtl_space_ = new NGConstraintSpace(
- HorizontalTopBottom, RTL,
+ kHorizontalTopBottom, RTL,
builder.SetAvailableSize(container_size_).ToConstraintSpace());
vertical_lr_space_ = new NGConstraintSpace(
- VerticalLeftRight, LTR,
+ kVerticalLeftRight, LTR,
builder.SetAvailableSize(container_size_).ToConstraintSpace());
vertical_rl_space_ = new NGConstraintSpace(
- VerticalLeftRight, LTR,
+ kVerticalLeftRight, LTR,
builder.SetAvailableSize(container_size_).ToConstraintSpace());
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698