| Index: third_party/WebKit/Source/platform/heap/PersistentNode.cpp
|
| diff --git a/third_party/WebKit/Source/platform/heap/PersistentNode.cpp b/third_party/WebKit/Source/platform/heap/PersistentNode.cpp
|
| index ffb23221c04ba02f0594a9d9f46a29f23e8894d9..3cb1821980c5530b49d00f6458b7c736b5d57df1 100644
|
| --- a/third_party/WebKit/Source/platform/heap/PersistentNode.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/PersistentNode.cpp
|
| @@ -34,7 +34,9 @@ int PersistentRegion::numberOfPersistents() {
|
| ++persistentCount;
|
| }
|
| }
|
| - ASSERT(persistentCount == m_persistentCount);
|
| +#if DCHECK_IS_ON()
|
| + DCHECK_EQ(persistentCount, m_persistentCount);
|
| +#endif
|
| return persistentCount;
|
| }
|
|
|
|
|