| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2013 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/iteration_helpers.html"> | |
| 9 <link rel="import" href="/tracing/base/math/range_utils.html"> | 8 <link rel="import" href="/tracing/base/math/range_utils.html"> |
| 10 <link rel="import" href="/tracing/base/math/statistics.html"> | 9 <link rel="import" href="/tracing/base/math/statistics.html"> |
| 11 <link rel="import" href="/tracing/base/scalar.html"> | 10 <link rel="import" href="/tracing/base/scalar.html"> |
| 12 <link rel="import" href="/tracing/base/unit.html"> | 11 <link rel="import" href="/tracing/base/unit.html"> |
| 12 <link rel="import" href="/tracing/base/utils.html"> |
| 13 <link rel="import" href="/tracing/core/auditor.html"> | 13 <link rel="import" href="/tracing/core/auditor.html"> |
| 14 <link rel="import" href="/tracing/model/alert.html"> | 14 <link rel="import" href="/tracing/model/alert.html"> |
| 15 <link rel="import" href="/tracing/model/frame.html"> | 15 <link rel="import" href="/tracing/model/frame.html"> |
| 16 <link rel="import" href="/tracing/model/helpers/android_model_helper.html"> | 16 <link rel="import" href="/tracing/model/helpers/android_model_helper.html"> |
| 17 <link rel="import" href="/tracing/model/thread_time_slice.html"> | 17 <link rel="import" href="/tracing/model/thread_time_slice.html"> |
| 18 <link rel="import" href="/tracing/model/user_model/response_expectation.html"> | 18 <link rel="import" href="/tracing/model/user_model/response_expectation.html"> |
| 19 | 19 |
| 20 <script> | 20 <script> |
| 21 'use strict'; | 21 'use strict'; |
| 22 | 22 |
| (...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 this.applyEventInfosRecursive_(new Map(), slice); | 758 this.applyEventInfosRecursive_(new Map(), slice); |
| 759 }, this); | 759 }, this); |
| 760 } | 760 } |
| 761 }; | 761 }; |
| 762 | 762 |
| 763 return { | 763 return { |
| 764 AndroidAuditor, | 764 AndroidAuditor, |
| 765 }; | 765 }; |
| 766 }); | 766 }); |
| 767 </script> | 767 </script> |
| OLD | NEW |