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

Side by Side Diff: Source/devtools/front_end/timeline/TimelinePanel.js

Issue 270553005: Support warning decorations in Timeline flame chart based on trace events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed timeline tests 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2012 Intel Inc. All rights reserved. 3 * Copyright (C) 2012 Intel Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 28 matching lines...) Expand all
39 importScript("TimelineFrameModel.js"); 39 importScript("TimelineFrameModel.js");
40 importScript("TimelineEventOverview.js"); 40 importScript("TimelineEventOverview.js");
41 importScript("TimelineFrameOverview.js"); 41 importScript("TimelineFrameOverview.js");
42 importScript("TimelineMemoryOverview.js"); 42 importScript("TimelineMemoryOverview.js");
43 importScript("TimelinePowerGraph.js"); 43 importScript("TimelinePowerGraph.js");
44 importScript("TimelinePowerOverview.js"); 44 importScript("TimelinePowerOverview.js");
45 importScript("TimelineFlameChart.js"); 45 importScript("TimelineFlameChart.js");
46 importScript("TimelineUIUtils.js"); 46 importScript("TimelineUIUtils.js");
47 importScript("TimelineView.js"); 47 importScript("TimelineView.js");
48 importScript("TimelineTracingView.js"); 48 importScript("TimelineTracingView.js");
49 importScript("TracingModel.js");
49 50
50 /** 51 /**
51 * @constructor 52 * @constructor
52 * @extends {WebInspector.Panel} 53 * @extends {WebInspector.Panel}
53 * @implements {WebInspector.TimelineModeViewDelegate} 54 * @implements {WebInspector.TimelineModeViewDelegate}
54 * @implements {WebInspector.Searchable} 55 * @implements {WebInspector.Searchable}
55 */ 56 */
56 WebInspector.TimelinePanel = function() 57 WebInspector.TimelinePanel = function()
57 { 58 {
58 WebInspector.Panel.call(this, "timeline"); 59 WebInspector.Panel.call(this, "timeline");
(...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after
1356 * @param {!WebInspector.TimelineModel.Record} record 1357 * @param {!WebInspector.TimelineModel.Record} record
1357 * @return {boolean} 1358 * @return {boolean}
1358 */ 1359 */
1359 accept: function(record) 1360 accept: function(record)
1360 { 1361 {
1361 return !this._hiddenRecords[record.type()]; 1362 return !this._hiddenRecords[record.type()];
1362 }, 1363 },
1363 1364
1364 __proto__: WebInspector.TimelineModel.Filter.prototype 1365 __proto__: WebInspector.TimelineModel.Filter.prototype
1365 } 1366 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineFlameChart.js ('k') | Source/devtools/front_end/timeline/TracingModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698