| 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 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1292 * @param {!WebInspector.TimelineModel.Record} record | 1293 * @param {!WebInspector.TimelineModel.Record} record |
| 1293 * @return {boolean} | 1294 * @return {boolean} |
| 1294 */ | 1295 */ |
| 1295 accept: function(record) | 1296 accept: function(record) |
| 1296 { | 1297 { |
| 1297 return !this._hiddenRecords[record.type()]; | 1298 return !this._hiddenRecords[record.type()]; |
| 1298 }, | 1299 }, |
| 1299 | 1300 |
| 1300 __proto__: WebInspector.TimelineModel.Filter.prototype | 1301 __proto__: WebInspector.TimelineModel.Filter.prototype |
| 1301 } | 1302 } |
| OLD | NEW |