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..62727ddeac9651e227c5083d38ce3753c162224b 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), hasWidth(true), hasHeight(true) {} |
FloatSize size; |
double aspectRatio; |
+ bool hasWidth; |
+ bool hasHeight; |
+ |
+ void transpose(); |
}; |
// Computes the logical intrinsic sizing information. |