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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js

Issue 2445173002: DevTools: Fix highlight/selection of marker events (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
index 68e7f0a6f4a5729ed53f44bf9a115a7a64162b39..a27e3e3a20ffa9b9fe28718f85b6cbc7e30fda34 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
@@ -211,20 +211,6 @@ WebInspector.ProfileFlameChartDataProvider.prototype = {
/**
* @override
- * @param {number} entryIndex
- * @return {!{startTime: number, endTime: number}}
- */
- highlightTimeRange: function(entryIndex)
- {
- var startTime = this._timelineData.entryStartTimes[entryIndex];
- return {
- startTime: startTime,
- endTime: startTime + this._timelineData.entryTotalTimes[entryIndex]
- };
- },
-
- /**
- * @override
* @return {number}
*/
paddingLeft: function()
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698