Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1590)

Unified Diff: Source/devtools/front_end/HeapSnapshotView.js

Issue 212773005: DevTools: Show all objects in class view in advanced heap snapshot mode. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/HeapSnapshotView.js
diff --git a/Source/devtools/front_end/HeapSnapshotView.js b/Source/devtools/front_end/HeapSnapshotView.js
index a13265a7aa82a3965a026045c46035c28591fc01..79ad2b866036122d4cc34ff7154c47ea756c1b69 100644
--- a/Source/devtools/front_end/HeapSnapshotView.js
+++ b/Source/devtools/front_end/HeapSnapshotView.js
@@ -873,9 +873,9 @@ WebInspector.HeapSnapshotView.prototype = {
this._currentPerspective.deactivate(this);
var perspective = this._perspectives[selectedIndex];
- perspective.activate(this);
yurys 2014/03/27 07:35:41 Why did this move?
alph 2014/03/27 09:39:32 activate calls show on grids, which in turn send C
this._currentPerspective = perspective;
this._dataGrid = perspective.masterGrid(this);
+ perspective.activate(this);
this.refreshVisibleData();
if (this._dataGrid) {

Powered by Google App Engine
This is Rietveld 408576698