| Index: third_party/WebKit/Source/core/layout/LayoutBox.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.h b/third_party/WebKit/Source/core/layout/LayoutBox.h
|
| index c76c483e2a4f812f9bbbc5272d6db8bf74ee599a..0018f2238d33f724fe020711155c9b4c0c89c3a9 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBox.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBox.h
|
| @@ -826,10 +826,14 @@ public:
|
|
|
| struct IntrinsicSizingInfo {
|
| STACK_ALLOCATED();
|
| - IntrinsicSizingInfo() : aspectRatio(0) {}
|
| + IntrinsicSizingInfo() : aspectRatio(0), emptyWidth(false), emptyHeight(false) {}
|
|
|
| FloatSize size;
|
| double aspectRatio;
|
| + bool emptyWidth;
|
| + bool emptyHeight;
|
| +
|
| + void transpose();
|
| };
|
|
|
| // Computes the logical intrinsic sizing information.
|
|
|