| Index: third_party/WebKit/Source/core/dom/PresentationAttributeStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/PresentationAttributeStyle.cpp b/third_party/WebKit/Source/core/dom/PresentationAttributeStyle.cpp
|
| index 265a0961fa64432bd4ff2f535c3fa28bd8bd10a3..f9fcf8254b3253900cf80996426312a64535098b 100644
|
| --- a/third_party/WebKit/Source/core/dom/PresentationAttributeStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/PresentationAttributeStyle.cpp
|
| @@ -104,7 +104,7 @@ class PresentationAttributeCacheCleaner {
|
| (100 * presentationAttributeCacheCleanTimeInSeconds) / 60;
|
|
|
| void cleanCache(TimerBase* timer) {
|
| - ASSERT_UNUSED(timer, timer == &m_cleanTimer);
|
| + DCHECK_EQ(timer, &m_cleanTimer);
|
| unsigned hitCount = m_hitCount;
|
| m_hitCount = 0;
|
| if (hitCount > minimumPresentationAttributeCacheHitCountPerMinute)
|
|
|