| 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 | 7 |
| 8 <link rel="import" href="/tracing/base/guid.html"> | 8 <link rel="import" href="/tracing/base/guid.html"> |
| 9 <link rel="import" href="/tracing/base/range_utils.html"> | 9 <link rel="import" href="/tracing/base/math/range_utils.html"> |
| 10 <link rel="import" href="/tracing/core/auditor.html"> | 10 <link rel="import" href="/tracing/core/auditor.html"> |
| 11 <link rel="import" href="/tracing/model/helpers/android_app.html"> | 11 <link rel="import" href="/tracing/model/helpers/android_app.html"> |
| 12 <link rel="import" href="/tracing/model/helpers/android_surface_flinger.html"> | 12 <link rel="import" href="/tracing/model/helpers/android_surface_flinger.html"> |
| 13 | 13 |
| 14 <script> | 14 <script> |
| 15 'use strict'; | 15 'use strict'; |
| 16 | 16 |
| 17 /** | 17 /** |
| 18 * @fileoverview Class for managing android-specific model meta data, | 18 * @fileoverview Class for managing android-specific model meta data, |
| 19 * such as rendering apps, frames rendered, and SurfaceFlinger. | 19 * such as rendering apps, frames rendered, and SurfaceFlinger. |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 callback); | 95 callback); |
| 96 }); | 96 }); |
| 97 } | 97 } |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 return { | 100 return { |
| 101 AndroidModelHelper, | 101 AndroidModelHelper, |
| 102 }; | 102 }; |
| 103 }); | 103 }); |
| 104 </script> | 104 </script> |
| OLD | NEW |