| Index: Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js
|
| diff --git a/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js b/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js
|
| index 1badba6770363c097a8832c0e614742203504275..4777c26d5dd15536bf612b7cdfad7a51cb1f799e 100644
|
| --- a/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js
|
| +++ b/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js
|
| @@ -127,11 +127,11 @@ WebInspector.HeapSnapshotSortableDataGrid.prototype = {
|
| var node = td.heapSnapshotNode;
|
| function revealInDominatorsView()
|
| {
|
| - WebInspector.panels.profiles.showObject(node.snapshotNodeId, "Dominators");
|
| + WebInspector.inspectorView.panel("profiles").showObject(node.snapshotNodeId, "Dominators");
|
| }
|
| function revealInSummaryView()
|
| {
|
| - WebInspector.panels.profiles.showObject(node.snapshotNodeId, "Summary");
|
| + WebInspector.inspectorView.panel("profiles").showObject(node.snapshotNodeId, "Summary");
|
| }
|
| if(node instanceof WebInspector.HeapSnapshotRetainingObjectNode) {
|
| contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Summary view" : "Reveal in Summary View"), revealInSummaryView);
|
|
|