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

Unified Diff: Source/devtools/front_end/timeline/TimelineEventOverview.js

Issue 715803002: DevTools: merge TracingTimelineModel into TimelineModel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 | « Source/devtools/devtools.gypi ('k') | 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: Source/devtools/front_end/timeline/TimelineEventOverview.js
diff --git a/Source/devtools/front_end/timeline/TimelineEventOverview.js b/Source/devtools/front_end/timeline/TimelineEventOverview.js
index 4a1b9e2fd0d8b9564ddcd233ad39a64a7ff42ef7..9081044f245095bead2306bd1873b6333fb0ead8 100644
--- a/Source/devtools/front_end/timeline/TimelineEventOverview.js
+++ b/Source/devtools/front_end/timeline/TimelineEventOverview.js
@@ -86,7 +86,7 @@ WebInspector.TimelineEventOverview.prototype = {
*/
function appendRecord(record)
{
- if (record.type() === WebInspector.TracingTimelineModel.RecordType.BeginFrame)
+ if (record.type() === WebInspector.TimelineModel.RecordType.BeginFrame)
return;
var recordStart = Math.floor((record.startTime() - timeOffset) * scale);
var recordEnd = Math.ceil((record.endTime() - timeOffset) * scale);
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/timeline/TimelineFlameChart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698