| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineProfileTree.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineProfileTree.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineProfileTree.js
|
| index 6c59ee62703ee03f54d613a5b911c116b5d2e1a7..f759fc04c82765f6d63992b96ae28ea09a719081 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineProfileTree.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineProfileTree.js
|
| @@ -172,7 +172,7 @@ WebInspector.TimelineProfileTree.buildBottomUp = function(topDownTree, groupingC
|
| var rootChildren = buRoot.children;
|
| for (var item of rootChildren.entries()) {
|
| if (item[1].selfTime === 0)
|
| - rootChildren.delete(item[0]);
|
| + rootChildren.delete(/** @type {string} */(item[0]));
|
| }
|
|
|
| return buRoot;
|
|
|