⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 118674 in webkit


Ignore:
Timestamp:
May 28, 2012, 5:09:27 AM (14 years ago)
Author:
yurys@chromium.org
Message:

Unreviewed. Test fix after r118670: saved timeline data may
not have DOM counters data and MemoryStatistics object should
take this into account.

  • inspector/front-end/MemoryStatistics.js:

(WebInspector.MemoryStatistics.prototype._onRecordAdded):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r118673 r118674  
     12012-05-28  Yury Semikhatsky  <yurys@chromium.org>
     2
     3        Unreviewed. Test fix after r118670: saved timeline data may
     4        not have DOM counters data and MemoryStatistics object should
     5        take this into account.
     6
     7        * inspector/front-end/MemoryStatistics.js:
     8        (WebInspector.MemoryStatistics.prototype._onRecordAdded):
     9
    1102012-05-28  Sheriff Bot  <webkit.review.bot@gmail.com>
    211
  • trunk/Source/WebCore/inspector/front-end/MemoryStatistics.js

    r118670 r118674  
    259259    {
    260260        var counters = event.data["counters"];
     261        if (!counters)
     262            return;
    261263        this._counters.push({
    262264            time: event.data.endTime || event.data.startTime,
Note: See TracChangeset for help on using the changeset viewer.