Title: [101255] trunk/Source/WebCore
Revision
101255
Author
[email protected]
Date
2011-11-28 05:53:31 -0800 (Mon, 28 Nov 2011)

Log Message

Web Inspector: chromium: Unreviewed one-line fix for Summary view filter.

* inspector/front-end/HeapSnapshot.js:
(WebInspector.HeapSnapshot.prototype.createNodesProviderForClass):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (101254 => 101255)


--- trunk/Source/WebCore/ChangeLog	2011-11-28 13:41:30 UTC (rev 101254)
+++ trunk/Source/WebCore/ChangeLog	2011-11-28 13:53:31 UTC (rev 101255)
@@ -1,3 +1,10 @@
+2011-11-28  Ilya Tikhonovsky  <[email protected]>
+
+        Web Inspector: chromium: Unreviewed one-line fix for Summary view filter.
+
+        * inspector/front-end/HeapSnapshot.js:
+        (WebInspector.HeapSnapshot.prototype.createNodesProviderForClass):
+
 2011-11-28  Pavel Feldman  <[email protected]>
 
         Not reviewed: disable filesystem instrumentation to unbreak Qt tests.

Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js (101254 => 101255)


--- trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js	2011-11-28 13:41:30 UTC (rev 101254)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js	2011-11-28 13:53:31 UTC (rev 101255)
@@ -1086,7 +1086,7 @@
 
     createNodesProviderForClass: function(className, aggregatesKey)
     {
-        return new WebInspector.HeapSnapshotNodesProvider(this, null, this.aggregates(aggregatesKey)[className].idxs);
+        return new WebInspector.HeapSnapshotNodesProvider(this, null, this.aggregates(false, aggregatesKey)[className].idxs);
     },
 
     createNodesProviderForDominator: function(nodeIndex, filter)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to