Index: third_party/WebKit/Source/core/layout/ng/ng_physical_fragment_base.h |
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment_base.h b/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment_base.h |
index 75a22999a6f60aef1ab500f3bbc4ab3947f4b8dc..ab7fb9bfc165768fcf229ba5be7ffdf5148a2301 100644 |
--- a/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment_base.h |
+++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment_base.h |
@@ -38,6 +38,7 @@ class CORE_EXPORT NGPhysicalFragmentBase |
LayoutUnit Height() const { return size_.height; } |
// Returns the total size, including the contents outside of the border-box. |
+ NGPhysicalSize OverflowSize() { return overflow_; } |
Gleb Lanbin
2016/10/31 19:52:47
shouldn't a getter function name for variable have
cbiesinger
2016/11/01 19:10:04
It turns out I no longer need this function, so I
|
LayoutUnit WidthOverflow() const { return overflow_.width; } |
LayoutUnit HeightOverflow() const { return overflow_.height; } |