| Index: third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
|
| index cc2e3c55ec01c2e2e1b1c4f62d5a482a6244c3a1..caa216c1bed2bee0d89b730ec52c9caf4ca66db7 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
|
| @@ -86,12 +86,12 @@ StylePropertySet* StyleResolverState::customPropertySetForApplyAtRule(const Stri
|
| return m_customPropertySetsForApplyAtRule.get(string);
|
| }
|
|
|
| -HeapHashMap<CSSPropertyID, Member<const CSSValue>>& StyleResolverState::parsedPropertiesForPendingSubstitution(const CSSPendingSubstitutionValue& value)
|
| +HeapHashMap<CSSPropertyID, Member<const CSSValue>>& StyleResolverState::parsedPropertiesForPendingSubstitutionCache(const CSSPendingSubstitutionValue& value) const
|
| {
|
| - HeapHashMap<CSSPropertyID, Member<const CSSValue>>* map = m_parsedPropertiesForPendingSubstitution.get(&value);
|
| + HeapHashMap<CSSPropertyID, Member<const CSSValue>>* map = m_parsedPropertiesForPendingSubstitutionCache.get(&value);
|
| if (!map) {
|
| map = new HeapHashMap<CSSPropertyID, Member<const CSSValue>>;
|
| - m_parsedPropertiesForPendingSubstitution.set(&value, map);
|
| + m_parsedPropertiesForPendingSubstitutionCache.set(&value, map);
|
| }
|
| return *map;
|
| }
|
|
|