OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |