| Index: third_party/WebKit/Source/core/css/CSSProperty.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSProperty.h b/third_party/WebKit/Source/core/css/CSSProperty.h
|
| index fcf95c5428aa67a4436bc37c033a89d26dafa0ea..08f90e046e57d2326eeea8003a538572ac32b586 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSProperty.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSProperty.h
|
| @@ -50,14 +50,16 @@ struct StylePropertyMetadata {
|
|
|
| CSSPropertyID shorthandID() const;
|
|
|
| - uint16_t m_propertyID : 10;
|
| - uint16_t m_isSetFromShorthand : 1;
|
| - uint16_t
|
| - m_indexInShorthandsVector : 2; // If this property was set as part of an ambiguous shorthand, gives the index in the shorthands vector.
|
| - uint16_t m_important : 1;
|
| - uint16_t
|
| - m_implicit : 1; // Whether or not the property was set implicitly as the result of a shorthand.
|
| - uint16_t m_inherited : 1;
|
| + unsigned m_propertyID : 10;
|
| + unsigned m_isSetFromShorthand : 1;
|
| + // If this property was set as part of an ambiguous shorthand, gives the index
|
| + // in the shorthands vector.
|
| + unsigned m_indexInShorthandsVector : 2;
|
| + unsigned m_important : 1;
|
| + // Whether or not the property was set implicitly as the result of a
|
| + // shorthand.
|
| + unsigned m_implicit : 1;
|
| + unsigned m_inherited : 1;
|
| };
|
|
|
| class CSSProperty {
|
|
|