| Index: Source/bindings/core/v8/V8PerIsolateData.h
|
| diff --git a/Source/bindings/core/v8/V8PerIsolateData.h b/Source/bindings/core/v8/V8PerIsolateData.h
|
| index 2da9dff230d4f887791e380988ac927b9a5b7e06..9bd30b9ba98cf8127ebcc7995a4028329939d971 100644
|
| --- a/Source/bindings/core/v8/V8PerIsolateData.h
|
| +++ b/Source/bindings/core/v8/V8PerIsolateData.h
|
| @@ -78,7 +78,7 @@ public:
|
| bool performingMicrotaskCheckpoint() const { return m_performingMicrotaskCheckpoint; }
|
| void setPerformingMicrotaskCheckpoint(bool performingMicrotaskCheckpoint) { m_performingMicrotaskCheckpoint = performingMicrotaskCheckpoint; }
|
|
|
| -#ifndef NDEBUG
|
| +#if ENABLE(ASSERT)
|
| int internalScriptRecursionLevel() const { return m_internalScriptRecursionLevel; }
|
| int incrementInternalScriptRecursionLevel() { return ++m_internalScriptRecursionLevel; }
|
| int decrementInternalScriptRecursionLevel() { return --m_internalScriptRecursionLevel; }
|
| @@ -126,7 +126,7 @@ private:
|
| int m_recursionLevel;
|
| bool m_isHandlingRecursionLevelError;
|
|
|
| -#ifndef NDEBUG
|
| +#if ENABLE(ASSERT)
|
| int m_internalScriptRecursionLevel;
|
| #endif
|
| OwnPtr<GCEventData> m_gcEventData;
|
|
|