| Index: Source/core/css/resolver/StyleResolver.h
|
| diff --git a/Source/core/css/resolver/StyleResolver.h b/Source/core/css/resolver/StyleResolver.h
|
| index c6cb3e0f93bdb7fad226fb467525c03dd167d24e..da15d30f4de39f4c03393c6c4e64ddfc365d12e7 100644
|
| --- a/Source/core/css/resolver/StyleResolver.h
|
| +++ b/Source/core/css/resolver/StyleResolver.h
|
| @@ -32,6 +32,7 @@
|
| #include "core/css/TreeBoundaryCrossingRules.h"
|
| #include "core/css/resolver/MatchedPropertiesCache.h"
|
| #include "core/css/resolver/StyleBuilder.h"
|
| +#include "core/css/resolver/StylePropertyRange.h"
|
| #include "core/css/resolver/StyleResourceLoader.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Deque.h"
|
| @@ -226,23 +227,13 @@ private:
|
| bool applyAnimatedProperties(StyleResolverState&, const Element* animatingElement);
|
| void applyCallbackSelectors(StyleResolverState&);
|
|
|
| - enum StyleApplicationPass {
|
| - HighPriorityProperties,
|
| - 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);
|
| template <StyleApplicationPass pass>
|
| void applyProperties(StyleResolverState&, const StylePropertySet* properties, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelistNone);
|
| template <StyleApplicationPass pass>
|
| void applyAnimatedProperties(StyleResolverState&, const WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >&);
|
| - template <StyleResolver::StyleApplicationPass pass>
|
| + template <StyleApplicationPass pass>
|
| void applyAllProperty(StyleResolverState&, CSSValue*, bool inheritedOnly);
|
|
|
| void matchPageRules(MatchResult&, RuleSet*, bool isLeftPage, bool isFirstPage, const String& pageName);
|
|
|