| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <link rel="import" href="/tracing/base/range_utils.html"> | 7 <link rel="import" href="/tracing/base/range_utils.html"> |
| 8 <link rel="import" href="/tracing/base/sorted_array_utils.html"> | 8 <link rel="import" href="/tracing/base/sorted_array_utils.html"> |
| 9 <link rel="import" href="/tracing/base/statistics.html"> | 9 <link rel="import" href="/tracing/base/statistics.html"> |
| 10 <link rel="import" href="/tracing/model/frame.html"> | 10 <link rel="import" href="/tracing/model/frame.html"> |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 | 328 |
| 329 getAnimationAsyncSlices: function() { | 329 getAnimationAsyncSlices: function() { |
| 330 if (!this.animations_) { | 330 if (!this.animations_) { |
| 331 this.animations_ = getAnimationAsyncSlices(this.uiThread); | 331 this.animations_ = getAnimationAsyncSlices(this.uiThread); |
| 332 } | 332 } |
| 333 return this.animations_; | 333 return this.animations_; |
| 334 } | 334 } |
| 335 }; | 335 }; |
| 336 | 336 |
| 337 return { | 337 return { |
| 338 AndroidApp: AndroidApp | 338 AndroidApp, |
| 339 }; | 339 }; |
| 340 }); | 340 }); |
| 341 </script> | 341 </script> |
| OLD | NEW |