Index: third_party/WebKit/Source/core/layout/ng/ng_length_utils.cc |
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_length_utils.cc b/third_party/WebKit/Source/core/layout/ng/ng_length_utils.cc |
index ec098cc2c769230931e68215b9b0544ee01a3adf..36bfab573698e5e2ed4769add5f89e045853a7d7 100644 |
--- a/third_party/WebKit/Source/core/layout/ng/ng_length_utils.cc |
+++ b/third_party/WebKit/Source/core/layout/ng/ng_length_utils.cc |
@@ -60,7 +60,7 @@ LayoutUnit resolveBlockLength(const NGConstraintSpace& constraintSpace, |
LayoutUnit computeInlineSizeForFragment( |
const NGConstraintSpace& constraintSpace, |
const ComputedStyle& style) { |
- if (constraintSpace.fixedInlineSize()) |
+ if (constraintSpace.FixedInlineSize()) |
return constraintSpace.ContainerSize().inline_size; |
LayoutUnit extent = resolveInlineLength(constraintSpace, style.logicalWidth(), |
@@ -87,7 +87,7 @@ LayoutUnit computeInlineSizeForFragment( |
LayoutUnit computeBlockSizeForFragment(const NGConstraintSpace& constraintSpace, |
const ComputedStyle& style, |
LayoutUnit contentSize) { |
- if (constraintSpace.fixedBlockSize()) |
+ if (constraintSpace.FixedBlockSize()) |
return constraintSpace.ContainerSize().block_size; |
LayoutUnit extent = |