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