| Index: third_party/WebKit/Source/platform/heap/ThreadState.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.h b/third_party/WebKit/Source/platform/heap/ThreadState.h
|
| index 4807cfdc08bd4143c88361a02c0b9018e41ab24f..c4002b389ba0868eacc33e65f325d80bc79777a2 100644
|
| --- a/third_party/WebKit/Source/platform/heap/ThreadState.h
|
| +++ b/third_party/WebKit/Source/platform/heap/ThreadState.h
|
| @@ -253,7 +253,7 @@ class PLATFORM_EXPORT ThreadState {
|
| }
|
| void enterGCForbiddenScope() { m_gcForbiddenCount++; }
|
| void leaveGCForbiddenScope() {
|
| - DCHECK_GE(m_gcForbiddenCount, 0u);
|
| + DCHECK_GT(m_gcForbiddenCount, 0u);
|
| m_gcForbiddenCount--;
|
| }
|
| bool isMixinInConstruction() const { return m_mixinsBeingConstructedCount; }
|
|
|