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

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

Issue 402113002: Draw marker events on Timeline flame chart (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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: Source/devtools/front_end/profiler/CPUProfileFlameChart.js
diff --git a/Source/devtools/front_end/profiler/CPUProfileFlameChart.js b/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
index 10713d9c4c280cdba823614bacd43cf7669a2f22..1d64280dd6b948b40b0b8d25dec55ec66447b5ae 100644
--- a/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
+++ b/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
@@ -111,6 +111,16 @@ WebInspector.CPUFlameChartDataProvider.prototype = {
},
/**
+ * @param {number} startTime
+ * @param {number} endTime
+ * @return {?Array.<!WebInspector.FlameChartDataProvider.Marker>}
+ */
+ timelineMarkers: function(startTime, endTime)
+ {
+ return null;
+ },
+
+ /**
* @return {?WebInspector.FlameChart.TimelineData}
*/
_calculateTimelineData: function()

Powered by Google App Engine
This is Rietveld 408576698