| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 /** | 31 /** |
| 32 * @constructor | 32 * @constructor |
| 33 * @extends {WebInspector.TargetAwareObject} | 33 * @extends {WebInspector.SDKObject} |
| 34 * @param {!WebInspector.Target} target | 34 * @param {!WebInspector.Target} target |
| 35 */ | 35 */ |
| 36 WebInspector.TimelineFrameModelBase = function(target) | 36 WebInspector.TimelineFrameModelBase = function(target) |
| 37 { | 37 { |
| 38 WebInspector.TargetAwareObject.call(this, target); | 38 WebInspector.SDKObject.call(this, target); |
| 39 | 39 |
| 40 this.reset(); | 40 this.reset(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 WebInspector.TimelineFrameModelBase.prototype = { | 43 WebInspector.TimelineFrameModelBase.prototype = { |
| 44 /** | 44 /** |
| 45 * @return {!Array.<!WebInspector.TimelineFrame>} | 45 * @return {!Array.<!WebInspector.TimelineFrame>} |
| 46 */ | 46 */ |
| 47 frames: function() | 47 frames: function() |
| 48 { | 48 { |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 if (!record.children()) | 199 if (!record.children()) |
| 200 return null; | 200 return null; |
| 201 for (var i = 0; i < record.children().length; ++i) { | 201 for (var i = 0; i < record.children().length; ++i) { |
| 202 var result = this._findRecordRecursively(types, record.children()[i]
); | 202 var result = this._findRecordRecursively(types, record.children()[i]
); |
| 203 if (result) | 203 if (result) |
| 204 return result; | 204 return result; |
| 205 } | 205 } |
| 206 return null; | 206 return null; |
| 207 }, | 207 }, |
| 208 | 208 |
| 209 __proto__: WebInspector.TargetAwareObject.prototype | 209 __proto__: WebInspector.SDKObject.prototype |
| 210 } | 210 } |
| 211 | 211 |
| 212 /** | 212 /** |
| 213 * @constructor | 213 * @constructor |
| 214 * @param {!WebInspector.Target} target | 214 * @param {!WebInspector.Target} target |
| 215 * @extends {WebInspector.TimelineFrameModelBase} | 215 * @extends {WebInspector.TimelineFrameModelBase} |
| 216 */ | 216 */ |
| 217 WebInspector.TimelineFrameModel = function(target) | 217 WebInspector.TimelineFrameModel = function(target) |
| 218 { | 218 { |
| 219 WebInspector.TimelineFrameModelBase.call(this, target); | 219 WebInspector.TimelineFrameModelBase.call(this, target); |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 /** | 570 /** |
| 571 * @param {string} category | 571 * @param {string} category |
| 572 * @param {number} time | 572 * @param {number} time |
| 573 */ | 573 */ |
| 574 _addTimeForCategory: function(category, time) | 574 _addTimeForCategory: function(category, time) |
| 575 { | 575 { |
| 576 this.timeByCategory[category] = (this.timeByCategory[category] || 0) + t
ime; | 576 this.timeByCategory[category] = (this.timeByCategory[category] || 0) + t
ime; |
| 577 this.cpuTime += time; | 577 this.cpuTime += time; |
| 578 }, | 578 }, |
| 579 } | 579 } |
| OLD | NEW |