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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.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
Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js
index 6eb3e9ce538bb77c1b9f21c4369df9706460efd7..cf9997f2d6a0991d3bc53959a1fbfa97ebaf0ffa 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js
@@ -214,20 +214,6 @@ WebInspector.TimelineFlameChartDataProviderBase.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]
- };
- },
-
- /**
* @param {number} entryIndex
* @return {?WebInspector.TimelineSelection}
*/

Powered by Google App Engine
This is Rietveld 408576698