| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @implements {PerfUI.FlameChartDataProvider} | 6 * @implements {PerfUI.FlameChartDataProvider} |
| 7 * @unrestricted | 7 * @unrestricted |
| 8 */ | 8 */ |
| 9 Timeline.TimelineFlameChartNetworkDataProvider = class { | 9 Timeline.TimelineFlameChartNetworkDataProvider = class { |
| 10 constructor() { | 10 constructor() { |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 | 393 |
| 394 /** | 394 /** |
| 395 * @override | 395 * @override |
| 396 * @param {number} entryIndex | 396 * @param {number} entryIndex |
| 397 * @return {boolean} | 397 * @return {boolean} |
| 398 */ | 398 */ |
| 399 canJumpToEntry(entryIndex) { | 399 canJumpToEntry(entryIndex) { |
| 400 return false; | 400 return false; |
| 401 } | 401 } |
| 402 }; | 402 }; |
| OLD | NEW |