| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2016 The Chromium Authors. All rights reserved. | 3 Copyright 2016 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.html"> | 8 <link rel="import" href="/tracing/base/math/range.html"> |
| 10 <link rel="import" href="/tracing/base/math/running_statistics.html"> | 9 <link rel="import" href="/tracing/base/math/running_statistics.html"> |
| 11 <link rel="import" href="/tracing/base/math/sorted_array_utils.html"> | 10 <link rel="import" href="/tracing/base/math/sorted_array_utils.html"> |
| 12 <link rel="import" href="/tracing/base/math/statistics.html"> | 11 <link rel="import" href="/tracing/base/math/statistics.html"> |
| 13 <link rel="import" href="/tracing/base/scalar.html"> | 12 <link rel="import" href="/tracing/base/scalar.html"> |
| 14 <link rel="import" href="/tracing/base/unit.html"> | 13 <link rel="import" href="/tracing/base/unit.html"> |
| 14 <link rel="import" href="/tracing/base/utils.html"> |
| 15 <link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html"> | 15 <link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html"> |
| 16 | 16 |
| 17 <script> | 17 <script> |
| 18 'use strict'; | 18 'use strict'; |
| 19 | 19 |
| 20 tr.exportTo('tr.v', function() { | 20 tr.exportTo('tr.v', function() { |
| 21 const MAX_DIAGNOSTIC_MAPS = 16; | 21 const MAX_DIAGNOSTIC_MAPS = 16; |
| 22 | 22 |
| 23 const DEFAULT_SAMPLE_VALUES_PER_BIN = 10; | 23 const DEFAULT_SAMPLE_VALUES_PER_BIN = 10; |
| 24 | 24 |
| (...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1421 Histogram, | 1421 Histogram, |
| 1422 HistogramBinBoundaries, | 1422 HistogramBinBoundaries, |
| 1423 P_VALUE_NAME, | 1423 P_VALUE_NAME, |
| 1424 U_STATISTIC_NAME, | 1424 U_STATISTIC_NAME, |
| 1425 Z_SCORE_NAME, | 1425 Z_SCORE_NAME, |
| 1426 percentFromString, | 1426 percentFromString, |
| 1427 percentToString, | 1427 percentToString, |
| 1428 }; | 1428 }; |
| 1429 }); | 1429 }); |
| 1430 </script> | 1430 </script> |
| OLD | NEW |