| Index: third_party/WebKit/Source/core/dom/DocumentLifecycle.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentLifecycle.h b/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
|
| index e2c1f431bd095699c4cf766db28dcda825fb5aa6..f8c98d45a073d4556e0a72ee8c9d5c61667041fd 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
|
| @@ -157,7 +157,7 @@ public:
|
| void incrementDetachCount() { m_detachCount++; }
|
| void decrementDetachCount()
|
| {
|
| - ASSERT(m_detachCount > 0);
|
| + DCHECK_GT(m_detachCount, 0);
|
| m_detachCount--;
|
| }
|
|
|
|
|