| Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.h
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.h b/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.h
|
| index fe5e17adbb5dfece85455150ad6138364dc24b25..8cf5e8980be3823718db51b3b27ebe2a6e9917c8 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.h
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.h
|
| @@ -111,11 +111,13 @@ bool IsCSSWideKeyword(StringView);
|
|
|
| CSSIdentifierValue* ConsumeShapeBox(CSSParserTokenRange&);
|
|
|
| +enum class IsImplicitProperty { kNotImplicit, kImplicit };
|
| +
|
| void AddProperty(CSSPropertyID resolved_property,
|
| CSSPropertyID current_shorthand,
|
| const CSSValue&,
|
| bool important,
|
| - bool implicit,
|
| + IsImplicitProperty,
|
| HeapVector<CSSProperty, 256>& properties);
|
|
|
| // Template implementations are at the bottom of the file for readability.
|
|
|