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

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

Issue 301593002: DevTools: process events from all threads in TimelineTraceEventBindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments addressed Created 6 years, 7 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/timeline/TimelineTracingView.js
diff --git a/Source/devtools/front_end/timeline/TimelineTracingView.js b/Source/devtools/front_end/timeline/TimelineTracingView.js
index 8ab4e20914529554671aad9577a8196893fd31d1..96a2d8465980277e7ee1abc7e62622b9951d1a64 100644
--- a/Source/devtools/front_end/timeline/TimelineTracingView.js
+++ b/Source/devtools/front_end/timeline/TimelineTracingView.js
@@ -229,8 +229,8 @@ WebInspector.TraceViewFlameChartDataProvider = function(model, timelineModelForM
id: 0,
s: ""
}
- this._processHeaderRecord = new WebInspector.TracingModel.Event(dummyEventPayload, 0);
- this._threadHeaderRecord = new WebInspector.TracingModel.Event(dummyEventPayload, 0);
+ this._processHeaderRecord = new WebInspector.TracingModel.Event(dummyEventPayload, 0, null);
+ this._threadHeaderRecord = new WebInspector.TracingModel.Event(dummyEventPayload, 0, null);
}
WebInspector.TraceViewFlameChartDataProvider.prototype = {
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineTraceEventBindings.js ('k') | Source/devtools/front_end/timeline/TracingModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698