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

Changeset 117773 in webkit


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

Unreviewed. Fix Closure compiler error after r117753.

  • inspector/front-end/HeapSnapshotGridNodes.js:

(WebInspector.HeapSnapshotConstructorNode.prototype.revealNodeBySnapshotObjectId.didGetNodePosition):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r117771 r117773  
     12012-05-21  Yury Semikhatsky  <yurys@chromium.org>
     2
     3        Unreviewed. Fix Closure compiler error after r117753.
     4
     5        * inspector/front-end/HeapSnapshotGridNodes.js:
     6        (WebInspector.HeapSnapshotConstructorNode.prototype.revealNodeBySnapshotObjectId.didGetNodePosition):
     7
    182012-05-21  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
    29
  • trunk/Source/WebCore/inspector/front-end/HeapSnapshotGridNodes.js

    r117753 r117773  
    736736        function didGetNodePosition(nodePosition)
    737737        {
    738             if (nodePosition === -1) {
     738            if (nodePosition === -1)
    739739                this.collapse();
    740                 callback(null);
    741             } else
     740            else
    742741                this._populateChildren(nodePosition, null, didPopulateChildren.bind(this, nodePosition));
    743742        }
Note: See TracChangeset for help on using the changeset viewer.