| Index: third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h
 | 
| diff --git a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h
 | 
| index c7d8d6e9d401a99562c0dbcfe7df2d3bf2bc6ae8..101c8e9e2fa57bc76fd35b48775c16e020a6f4c9 100644
 | 
| --- a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h
 | 
| +++ b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h
 | 
| @@ -36,10 +36,9 @@ namespace blink {
 | 
|  class ComputedStyle;
 | 
|  class StyleResolverState;
 | 
|  
 | 
| -class CachedMatchedProperties final : public NoBaseWillBeGarbageCollectedFinalized<CachedMatchedProperties> {
 | 
| -    USING_FAST_MALLOC_WILL_BE_REMOVED(CachedMatchedProperties);
 | 
| +class CachedMatchedProperties final : public GarbageCollectedFinalized<CachedMatchedProperties> {
 | 
|  public:
 | 
| -    WillBeHeapVector<MatchedProperties> matchedProperties;
 | 
| +    HeapVector<MatchedProperties> matchedProperties;
 | 
|      RefPtr<ComputedStyle> computedStyle;
 | 
|      RefPtr<ComputedStyle> parentComputedStyle;
 | 
|  
 | 
| 
 |