Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Unified Diff: Source/bindings/core/v8/V8RecursionScope.h

Issue 1304103002: Replace ASSERT(!isScriptForbbiden()) in MicroTaskSuppression with RELEASE_ASSERT (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8RecursionScope.h
diff --git a/Source/bindings/core/v8/V8RecursionScope.h b/Source/bindings/core/v8/V8RecursionScope.h
index cd3e8abc7350181467aeaebe174b9d1c8942ddf5..da691d571b8a9d02e3f6e4632e4f35925f2a51f1 100644
--- a/Source/bindings/core/v8/V8RecursionScope.h
+++ b/Source/bindings/core/v8/V8RecursionScope.h
@@ -95,7 +95,7 @@ public:
: m_isolate(isolate)
#endif
{
- ASSERT(!ScriptForbiddenScope::isScriptForbidden());
+ RELEASE_ASSERT(!ScriptForbiddenScope::isScriptForbidden());
#if ENABLE(ASSERT)
V8PerIsolateData::from(m_isolate)->incrementInternalScriptRecursionLevel();
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698