OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /** | 7 /** |
8 * @constructor | 8 * @constructor |
9 * @param {!WebInspector.BackingStorage} backingStorage | 9 * @param {!WebInspector.BackingStorage} backingStorage |
10 */ | 10 */ |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 this.startTime = startTime; | 455 this.startTime = startTime; |
456 /** @type {!WebInspector.TracingModel.Thread} */ | 456 /** @type {!WebInspector.TracingModel.Thread} */ |
457 this.thread = thread; | 457 this.thread = thread; |
458 /** @type {!Object} */ | 458 /** @type {!Object} */ |
459 this.args = {}; | 459 this.args = {}; |
460 | 460 |
461 /** @type {?string} */ | 461 /** @type {?string} */ |
462 this.warning = null; | 462 this.warning = null; |
463 /** @type {?WebInspector.TracingModel.Event} */ | 463 /** @type {?WebInspector.TracingModel.Event} */ |
464 this.initiator = null; | 464 this.initiator = null; |
465 /** @type {?Array.<!ConsoleAgent.CallFrame>} */ | 465 /** @type {?Array.<!RuntimeAgent.CallFrame>} */ |
466 this.stackTrace = null; | 466 this.stackTrace = null; |
467 /** @type {?Element} */ | 467 /** @type {?Element} */ |
468 this.previewElement = null; | 468 this.previewElement = null; |
469 /** @type {?string} */ | 469 /** @type {?string} */ |
470 this.url = null; | 470 this.url = null; |
471 /** @type {number} */ | 471 /** @type {number} */ |
472 this.backendNodeId = 0; | 472 this.backendNodeId = 0; |
473 | 473 |
474 /** @type {number} */ | 474 /** @type {number} */ |
475 this.selfTime = 0; | 475 this.selfTime = 0; |
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 /** | 943 /** |
944 * @return {!Array.<!WebInspector.TracingModel.AsyncEvent>} | 944 * @return {!Array.<!WebInspector.TracingModel.AsyncEvent>} |
945 */ | 945 */ |
946 asyncEvents: function() | 946 asyncEvents: function() |
947 { | 947 { |
948 return this._asyncEvents; | 948 return this._asyncEvents; |
949 }, | 949 }, |
950 | 950 |
951 __proto__: WebInspector.TracingModel.NamedObject.prototype | 951 __proto__: WebInspector.TracingModel.NamedObject.prototype |
952 } | 952 } |
OLD | NEW |