Changeset 119418 in webkit


Ignore:
Timestamp:
Jun 4, 2012 12:52:05 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[chromium] Issue async events for console.time/timeEnd
https://bugs.webkit.org/show_bug.cgi?id=88003

Patch by Kevin Greer <kgr@chromium.org> on 2012-06-04
Reviewed by Pavel Feldman.

  • ../../Source/WebCore/page/Console.cpp:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r119382 r119418  
     12012-06-04  Kevin Greer  <kgr@chromium.org>
     2
     3        [chromium] Issue async events for console.time/timeEnd
     4        https://bugs.webkit.org/show_bug.cgi?id=88003
     5
     6        Reviewed by Pavel Feldman.
     7
     8        * ../../Source/WebCore/page/Console.cpp:
     9
    1102012-06-04  Carlos Garcia Campos  <cgarcia@igalia.com>
    211
  • trunk/Source/WebCore/page/Console.cpp

    r114632 r119418  
    311311    InspectorInstrumentation::startConsoleTiming(page(), title);
    312312#if PLATFORM(CHROMIUM)
    313     TRACE_EVENT_COPY_BEGIN0("webkit", title.utf8().data());
     313    TRACE_EVENT_COPY_ASYNC_BEGIN0("webkit", title.utf8().data(), this);
    314314#endif
    315315}
     
    318318{
    319319#if PLATFORM(CHROMIUM)
    320     TRACE_EVENT_COPY_END0("webkit", title.utf8().data());
     320    TRACE_EVENT_COPY_ASYNC_END0("webkit", title.utf8().data(), this);
    321321#endif
    322322    InspectorInstrumentation::stopConsoleTiming(page(), title, callStack);
Note: See TracChangeset for help on using the changeset viewer.