| Index: Source/core/css/resolver/StyleResolver.h
|
| diff --git a/Source/core/css/resolver/StyleResolver.h b/Source/core/css/resolver/StyleResolver.h
|
| index ef06ace5bd5802006e14460703708ce704fd34f3..84c0ddc780cc546afd9d9aea8094d41b7fdb623e 100644
|
| --- a/Source/core/css/resolver/StyleResolver.h
|
| +++ b/Source/core/css/resolver/StyleResolver.h
|
| @@ -264,6 +264,10 @@ private:
|
| LowPriorityProperties
|
| };
|
| template <StyleResolver::StyleApplicationPass pass>
|
| + static inline CSSPropertyID firstCSSPropertyId();
|
| + template <StyleResolver::StyleApplicationPass pass>
|
| + static inline CSSPropertyID lastCSSPropertyId();
|
| + template <StyleResolver::StyleApplicationPass pass>
|
| static inline bool isPropertyForPass(CSSPropertyID);
|
| template <StyleApplicationPass pass>
|
| void applyMatchedProperties(StyleResolverState&, const MatchResult&, bool important, int startIndex, int endIndex, bool inheritedOnly);
|
| @@ -271,6 +275,9 @@ private:
|
| void applyProperties(StyleResolverState&, const StylePropertySet* properties, StyleRule*, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelistNone);
|
| template <StyleApplicationPass pass>
|
| void applyAnimatedProperties(StyleResolverState&, const WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >&);
|
| + template <StyleResolver::StyleApplicationPass pass>
|
| + void applyAllProperty(StyleResolverState&, CSSValue*);
|
| +
|
| void matchPageRules(MatchResult&, RuleSet*, bool isLeftPage, bool isFirstPage, const String& pageName);
|
| void matchPageRulesForList(WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& matchedRules, const WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >&, bool isLeftPage, bool isFirstPage, const String& pageName);
|
| void collectViewportRules();
|
|
|