| Index: Source/core/css/resolver/MatchedPropertiesCache.h
|
| diff --git a/Source/core/css/resolver/MatchedPropertiesCache.h b/Source/core/css/resolver/MatchedPropertiesCache.h
|
| index aa1c1894b7d8f6d620700913f392854b566f98c7..3c8e736dd342caf3906683ece938da24976c25a1 100644
|
| --- a/Source/core/css/resolver/MatchedPropertiesCache.h
|
| +++ b/Source/core/css/resolver/MatchedPropertiesCache.h
|
| @@ -46,7 +46,12 @@ public:
|
|
|
| void set(const ComputedStyle&, const ComputedStyle& parentStyle, const MatchResult&);
|
| void clear();
|
| - DEFINE_INLINE_TRACE() { visitor->trace(matchedProperties); }
|
| + DEFINE_INLINE_TRACE()
|
| + {
|
| +#if ENABLE(OILPAN)
|
| + visitor->trace(matchedProperties);
|
| +#endif
|
| + }
|
| };
|
|
|
| // Specialize the HashTraits for CachedMatchedProperties to check for dead
|
|
|