Changeset 114458 in webkit


Ignore:
Timestamp:
Apr 17, 2012 4:02:44 PM (12 years ago)
Author:
rafaelw@chromium.org
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):

Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r114452 r114458  
     12012-04-17  Rafael Weinstein  <rafaelw@chromium.org>
     2
     3        [MutationObservers] enable V8RecursionScope debug ASSERT()
     4        https://bugs.webkit.org/show_bug.cgi?id=84094
     5
     6        Reviewed by Ojan Vafai.
     7
     8        This patch enables the ASSERT() which enforces usage of
     9        V8RecursionScope.
     10
     11        * src/WebKit.cpp:
     12        (WebKit::assertV8RecursionScope):
     13
    1142012-04-17  Dana Jansens  <danakj@chromium.org>
    215
  • trunk/Source/WebKit/chromium/src/WebKit.cpp

    r113301 r114458  
    9393static void assertV8RecursionScope()
    9494{
    95     // FIXME: Enable when chromium usage of WebScriptInvocation has landed.
    96     // ASSERT(!isMainThread() || WebCore::V8RecursionScope::properlyUsed());
     95    ASSERT(!isMainThread() || WebCore::V8RecursionScope::properlyUsed());
    9796}
    9897#endif
Note: See TracChangeset for help on using the changeset viewer.