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..5fa146e71b83682445a00b28f82971dff20dda65 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 ImplicitProperty { kNotImplicit, kImplicit }; |
alancutter (OOO until 2018)
2017/06/20 01:50:44
Minor bikeshed: Maybe rename as IsImplicitProperty
Jia
2017/06/20 03:29:45
Done.
|
+ |
void AddProperty(CSSPropertyID resolved_property, |
CSSPropertyID current_shorthand, |
const CSSValue&, |
bool important, |
- bool implicit, |
+ ImplicitProperty, |
HeapVector<CSSProperty, 256>& properties); |
// Template implementations are at the bottom of the file for readability. |