Title: [117773] trunk/Source/WebCore
Revision
117773
Author
[email protected]
Date
2012-05-21 05:44:14 -0700 (Mon, 21 May 2012)

Log Message

Unreviewed. Fix Closure compiler error after r117753.

* inspector/front-end/HeapSnapshotGridNodes.js:
(WebInspector.HeapSnapshotConstructorNode.prototype.revealNodeBySnapshotObjectId.didGetNodePosition):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (117772 => 117773)


--- trunk/Source/WebCore/ChangeLog	2012-05-21 12:35:57 UTC (rev 117772)
+++ trunk/Source/WebCore/ChangeLog	2012-05-21 12:44:14 UTC (rev 117773)
@@ -1,3 +1,10 @@
+2012-05-21  Yury Semikhatsky  <[email protected]>
+
+        Unreviewed. Fix Closure compiler error after r117753.
+
+        * inspector/front-end/HeapSnapshotGridNodes.js:
+        (WebInspector.HeapSnapshotConstructorNode.prototype.revealNodeBySnapshotObjectId.didGetNodePosition):
+
 2012-05-21  Caio Marcelo de Oliveira Filho  <[email protected]>
 
         Move setEditingBehavior() from layoutTestController to window.internals

Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshotGridNodes.js (117772 => 117773)


--- trunk/Source/WebCore/inspector/front-end/HeapSnapshotGridNodes.js	2012-05-21 12:35:57 UTC (rev 117772)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshotGridNodes.js	2012-05-21 12:44:14 UTC (rev 117773)
@@ -735,10 +735,9 @@
 
         function didGetNodePosition(nodePosition)
         {
-            if (nodePosition === -1) {
+            if (nodePosition === -1)
                 this.collapse();
-                callback(null);
-            } else
+            else
                 this._populateChildren(nodePosition, null, didPopulateChildren.bind(this, nodePosition));
         }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to