| Index: third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
|
| index 8953dbf9f99ed52361ca591e6b91264d046a3aed..885067dabc4c70af2ebac631197090c613a7d2b5 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
|
| @@ -95,7 +95,7 @@ void MatchedPropertiesCache::add(const ComputedStyle& style, const ComputedStyle
|
| ASSERT(hash);
|
| Cache::AddResult addResult = m_cache.add(hash, nullptr);
|
| if (addResult.isNewEntry)
|
| - addResult.storedValue->value = adoptPtrWillBeNoop(new CachedMatchedProperties);
|
| + addResult.storedValue->value = (new CachedMatchedProperties);
|
|
|
| CachedMatchedProperties* cacheItem = addResult.storedValue->value.get();
|
| if (!addResult.isNewEntry)
|
|
|