Title: [114458] trunk/Source/WebKit/chromium
Revision
114458
Author
[email protected]
Date
2012-04-17 16:02:44 -0700 (Tue, 17 Apr 2012)

Log Message

[MutationObservers] enable V8RecursionScope debug ASSERT()
https://bugs.webkit.org/show_bug.cgi?id=84094

Reviewed by Ojan Vafai.

This patch enables the ASSERT() which enforces usage of
V8RecursionScope.

* src/WebKit.cpp:
(WebKit::assertV8RecursionScope):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (114457 => 114458)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-04-17 23:01:14 UTC (rev 114457)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-04-17 23:02:44 UTC (rev 114458)
@@ -1,3 +1,16 @@
+2012-04-17  Rafael Weinstein  <[email protected]>
+
+        [MutationObservers] enable V8RecursionScope debug ASSERT()
+        https://bugs.webkit.org/show_bug.cgi?id=84094
+
+        Reviewed by Ojan Vafai.
+
+        This patch enables the ASSERT() which enforces usage of
+        V8RecursionScope.
+
+        * src/WebKit.cpp:
+        (WebKit::assertV8RecursionScope):
+
 2012-04-17  Dana Jansens  <[email protected]>
 
         [chromium] Fix gyp for WebFilterOperation.h and WebFilterOperations.h

Modified: trunk/Source/WebKit/chromium/src/WebKit.cpp (114457 => 114458)


--- trunk/Source/WebKit/chromium/src/WebKit.cpp	2012-04-17 23:01:14 UTC (rev 114457)
+++ trunk/Source/WebKit/chromium/src/WebKit.cpp	2012-04-17 23:02:44 UTC (rev 114458)
@@ -92,8 +92,7 @@
 #ifndef NDEBUG
 static void assertV8RecursionScope()
 {
-    // FIXME: Enable when chromium usage of WebScriptInvocation has landed.
-    // ASSERT(!isMainThread() || WebCore::V8RecursionScope::properlyUsed());
+    ASSERT(!isMainThread() || WebCore::V8RecursionScope::properlyUsed());
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to