| 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/range.html"> | 8 <link rel="import" href="/tracing/base/range.html"> |
| 9 <link rel="import" href="/tracing/base/unit.html"> | 9 <link rel="import" href="/tracing/base/unit.html"> |
| 10 <link rel="import" href="/tracing/metrics/metric_registry.html"> | 10 <link rel="import" href="/tracing/metrics/metric_registry.html"> |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 }); | 324 }); |
| 325 var hist = new tr.v.Histogram( | 325 var hist = new tr.v.Histogram( |
| 326 'v8-execute-mutator-utilization_min', percentage_biggerIsBetter); | 326 'v8-execute-mutator-utilization_min', percentage_biggerIsBetter); |
| 327 hist.addSample(mutatorUtilization.min); | 327 hist.addSample(mutatorUtilization.min); |
| 328 values.addHistogram(hist); | 328 values.addHistogram(hist); |
| 329 } | 329 } |
| 330 ); | 330 ); |
| 331 } | 331 } |
| 332 | 332 |
| 333 return { | 333 return { |
| 334 gcMetric: gcMetric, | 334 gcMetric, |
| 335 WINDOW_SIZE_MS: WINDOW_SIZE_MS // For testing purposes only. | 335 WINDOW_SIZE_MS, // For testing purposes only. |
| 336 }; | 336 }; |
| 337 }); | 337 }); |
| 338 </script> | 338 </script> |
| OLD | NEW |