| Index: third_party/WebKit/Source/core/style/GridLength.h
|
| diff --git a/third_party/WebKit/Source/core/style/GridLength.h b/third_party/WebKit/Source/core/style/GridLength.h
|
| index 3257c8600f46a27833516733b5c2f882fd486150..67f4f6808c4f1c379fb3f7ddcf60cd03b199565f 100644
|
| --- a/third_party/WebKit/Source/core/style/GridLength.h
|
| +++ b/third_party/WebKit/Source/core/style/GridLength.h
|
| @@ -36,9 +36,10 @@
|
|
|
| namespace blink {
|
|
|
| -// This class wraps the <track-breadth> which can be either a <percentage>, <length>, min-content, max-content
|
| -// or <flex>. This class avoids spreading the knowledge of <flex> throughout the layout directory by adding
|
| -// an new unit to Length.h.
|
| +// This class wraps the <track-breadth> which can be either a <percentage>,
|
| +// <length>, min-content, max-content or <flex>. This class avoids spreading the
|
| +// knowledge of <flex> throughout the layout directory by adding an new unit to
|
| +// Length.h.
|
| class GridLength {
|
| DISALLOW_NEW();
|
|
|
| @@ -76,8 +77,8 @@ class GridLength {
|
| }
|
|
|
| private:
|
| - // Ideally we would put the 2 following fields in a union, but Length has a constructor,
|
| - // a destructor and a copy assignment which isn't allowed.
|
| + // Ideally we would put the 2 following fields in a union, but Length has a
|
| + // constructor, a destructor and a copy assignment which isn't allowed.
|
| Length m_length;
|
| double m_flex;
|
| enum GridLengthType { LengthType, FlexType };
|
|
|