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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineProfileTree.js

Issue 1774503005: [DevTools] Roll closure compiler to ToT version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: 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;

Powered by Google App Engine
This is Rietveld 408576698