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

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

Issue 276793002: Revert "Support warning decorations in Timeline flame chart based on trace events" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: upload correct patch thsi time 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");
50 49
51 /** 50 /**
52 * @constructor 51 * @constructor
53 * @extends {WebInspector.Panel} 52 * @extends {WebInspector.Panel}
54 * @implements {WebInspector.TimelineModeViewDelegate} 53 * @implements {WebInspector.TimelineModeViewDelegate}
55 * @implements {WebInspector.Searchable} 54 * @implements {WebInspector.Searchable}
56 */ 55 */
57 WebInspector.TimelinePanel = function() 56 WebInspector.TimelinePanel = function()
58 { 57 {
59 WebInspector.Panel.call(this, "timeline"); 58 WebInspector.Panel.call(this, "timeline");
(...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after
1356 * @param {!WebInspector.TimelineModel.Record} record 1355 * @param {!WebInspector.TimelineModel.Record} record
1357 * @return {boolean} 1356 * @return {boolean}
1358 */ 1357 */
1359 accept: function(record) 1358 accept: function(record)
1360 { 1359 {
1361 return !this._hiddenRecords[record.type()]; 1360 return !this._hiddenRecords[record.type()];
1362 }, 1361 },
1363 1362
1364 __proto__: WebInspector.TimelineModel.Filter.prototype 1363 __proto__: WebInspector.TimelineModel.Filter.prototype
1365 } 1364 }
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