| 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 * @unrestricted | 8 * @unrestricted |
| 8 */ | 9 */ |
| 9 WebInspector.TracingModel = class { | 10 WebInspector.TracingModel = class { |
| 10 /** | 11 /** |
| 11 * @param {!WebInspector.BackingStorage} backingStorage | 12 * @param {!WebInspector.BackingStorage} backingStorage |
| 12 */ | 13 */ |
| 13 constructor(backingStorage) { | 14 constructor(backingStorage) { |
| 14 this._backingStorage = backingStorage; | 15 this._backingStorage = backingStorage; |
| 15 // Avoid extra reset of the storage as it's expensive. | 16 // Avoid extra reset of the storage as it's expensive. |
| (...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 971 return this._events; | 972 return this._events; |
| 972 } | 973 } |
| 973 | 974 |
| 974 /** | 975 /** |
| 975 * @return {!Array.<!WebInspector.TracingModel.AsyncEvent>} | 976 * @return {!Array.<!WebInspector.TracingModel.AsyncEvent>} |
| 976 */ | 977 */ |
| 977 asyncEvents() { | 978 asyncEvents() { |
| 978 return this._asyncEvents; | 979 return this._asyncEvents; |
| 979 } | 980 } |
| 980 }; | 981 }; |
| OLD | NEW |