| Index: third_party/WebKit/Source/core/css/resolver/StyleResolverState.h
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.h b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.h
|
| index 912098578eab311099bae194f3156b6e491747f2..0aac75200fdd4fa9141f3b8d54a052cd77831571 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.h
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.h
|
| @@ -161,7 +161,7 @@ public:
|
| void setCustomPropertySetForApplyAtRule(const String&, StylePropertySet*);
|
| StylePropertySet* customPropertySetForApplyAtRule(const String&);
|
|
|
| - HeapHashMap<CSSPropertyID, Member<const CSSValue>>& parsedPropertiesForPendingSubstitution(const CSSPendingSubstitutionValue&);
|
| + HeapHashMap<CSSPropertyID, Member<const CSSValue>>& parsedPropertiesForPendingSubstitutionCache(const CSSPendingSubstitutionValue&) const;
|
|
|
| private:
|
| ElementResolveContext m_elementContext;
|
| @@ -190,7 +190,7 @@ private:
|
|
|
| HeapHashMap<String, Member<StylePropertySet>> m_customPropertySetsForApplyAtRule;
|
|
|
| - HeapHashMap<Member<const CSSPendingSubstitutionValue>, Member<HeapHashMap<CSSPropertyID, Member<const CSSValue>>>> m_parsedPropertiesForPendingSubstitution;
|
| + mutable HeapHashMap<Member<const CSSPendingSubstitutionValue>, Member<HeapHashMap<CSSPropertyID, Member<const CSSValue>>>> m_parsedPropertiesForPendingSubstitutionCache;
|
|
|
| };
|
|
|
|
|