Changeset 95405 in webkit


Ignore:
Timestamp:
Sep 19, 2011 1:17:43 AM (13 years ago)
Author:
loislo@chromium.org
Message:

Web Inspector: extend timeline coverage.
https://bugs.webkit.org/show_bug.cgi?id=68260

Another place with js function call from native.

Reviewed by Pavel Feldman.

  • src/WebDevToolsFrontendImpl.cpp:

(WebKit::WebDevToolsFrontendImpl::dispatchOnInspectorFrontend):

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

Legend:

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

    r95387 r95405  
     12011-09-19  Ilya Tikhonovsky  <loislo@chromium.org>
     2
     3        Web Inspector: extend timeline coverage.
     4        https://bugs.webkit.org/show_bug.cgi?id=68260
     5
     6        Another place with js function call from native.
     7
     8        Reviewed by Pavel Feldman.
     9
     10        * src/WebDevToolsFrontendImpl.cpp:
     11        (WebKit::WebDevToolsFrontendImpl::dispatchOnInspectorFrontend):
     12
    1132011-09-17  Mihai Parparita  <mihaip@chromium.org>
    214
     
    319331
    320332        * features.gypi:
    321 
    3223332011-09-15  Adam Barth  <abarth@webkit.org>
    323334
  • trunk/Source/WebKit/chromium/src/WebDevToolsFrontendImpl.cpp

    r86067 r95405  
    124124    v8::TryCatch tryCatch;
    125125    tryCatch.SetVerbose(true);
    126     function->Call(inspectorBackend, args.size(), args.data());
     126    V8Proxy::instrumentedCallFunction(frame->frame()->page(), function, inspectorBackend, args.size(), args.data());
    127127}
    128128
Note: See TracChangeset for help on using the changeset viewer.