| Index: third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js
|
| index 6fa1a42301233d9390deb887457fe54feaaf4cef..f4ad0d1fa4ac5a8a6f6075bd17f97d8ee6f00b3b 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js
|
| @@ -525,7 +525,7 @@ WebInspector.HeapSnapshotViewportDataGrid.prototype = {
|
|
|
| /**
|
| * @param {!WebInspector.DataGridNode} parent
|
| - * @param {!WebInspector.DataGridNode} node
|
| + * @param {!WebInspector.HeapSnapshotGridNode} node
|
| */
|
| appendNode: function(parent, node)
|
| {
|
| @@ -540,7 +540,7 @@ WebInspector.HeapSnapshotViewportDataGrid.prototype = {
|
| */
|
| insertChild: function(parent, node, index)
|
| {
|
| - this.allChildren(parent).splice(index, 0, node);
|
| + this.allChildren(parent).splice(index, 0, /** @type {!WebInspector.HeapSnapshotGridNode} */(node));
|
| },
|
|
|
| removeChildByIndex: function(parent, index)
|
|
|