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

Unified Diff: tools/turbolizer/turbo-visualizer.js

Issue 2228553004: [turbolizer] Improved display of perf profiling information. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 3 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
« no previous file with comments | « tools/turbolizer/turbo-visualizer.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/turbolizer/turbo-visualizer.js
diff --git a/tools/turbolizer/turbo-visualizer.js b/tools/turbolizer/turbo-visualizer.js
index b8d776260596f225fa7238c329ab8cdad631c013..280caf01db50571fc09c4e96131de78d88994c66 100644
--- a/tools/turbolizer/turbo-visualizer.js
+++ b/tools/turbolizer/turbo-visualizer.js
@@ -188,13 +188,6 @@ document.onload = (function(d3){
}
}
- var eventMenu = document.getElementById('event-selector');
- eventMenu.innerHTML = '';
- for (var event in jsonObj.eventCounts) {
- var optionElement = document.createElement("option");
- optionElement.text = event;
- eventMenu.add(optionElement, null);
- }
disassemblyView.initializePerfProfile(jsonObj.eventCounts);
disassemblyView.show(disassemblyPhase.data, null);
@@ -216,10 +209,6 @@ document.onload = (function(d3){
displayPhase(jsonObj.phases[selectMenu.selectedIndex]);
}
- eventMenu.onchange = function(item) {
- disassemblyView.show(disassemblyView.data, null);
- }
-
fitPanesToParents();
d3.select("#search-input").attr("value", window.sessionStorage.getItem("lastSearch") || "");
« no previous file with comments | « tools/turbolizer/turbo-visualizer.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698