| Index: third_party/WebKit/Source/core/layout/ng/ng_fragment.cc
 | 
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_fragment.cc b/third_party/WebKit/Source/core/layout/ng/ng_fragment.cc
 | 
| index a8081f2f5f24c5e22cc868b25882210ea28e020c..8bfc830003c5cb5229140dae0ededa6c67e0dea8 100644
 | 
| --- a/third_party/WebKit/Source/core/layout/ng/ng_fragment.cc
 | 
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_fragment.cc
 | 
| @@ -16,18 +16,6 @@ LayoutUnit NGFragment::BlockSize() const {
 | 
|                                                 : physical_fragment_->Width();
 | 
|  }
 | 
|  
 | 
| -LayoutUnit NGFragment::InlineOverflow() const {
 | 
| -  return writing_mode_ == kHorizontalTopBottom
 | 
| -             ? physical_fragment_->WidthOverflow()
 | 
| -             : physical_fragment_->HeightOverflow();
 | 
| -}
 | 
| -
 | 
| -LayoutUnit NGFragment::BlockOverflow() const {
 | 
| -  return writing_mode_ == kHorizontalTopBottom
 | 
| -             ? physical_fragment_->HeightOverflow()
 | 
| -             : physical_fragment_->WidthOverflow();
 | 
| -}
 | 
| -
 | 
|  LayoutUnit NGFragment::InlineOffset() const {
 | 
|    return writing_mode_ == kHorizontalTopBottom
 | 
|               ? physical_fragment_->LeftOffset()
 | 
| 
 |