| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2014 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/base.html"> | 8 <link rel="import" href="/tracing/base/base.html"> |
| 9 <link rel="import" href="/tracing/base/iteration_helpers.html"> | 9 <link rel="import" href="/tracing/base/iteration_helpers.html"> |
| 10 <link rel="import" href="/tracing/base/math.html"> | 10 <link rel="import" href="/tracing/base/math.html"> |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 if (!a.isEmpty && b.isEmpty) | 268 if (!a.isEmpty && b.isEmpty) |
| 269 return 1; | 269 return 1; |
| 270 | 270 |
| 271 return 0; | 271 return 0; |
| 272 }; | 272 }; |
| 273 | 273 |
| 274 Range.PERCENT_RANGE = Range.fromExplicitRange(0, 1); | 274 Range.PERCENT_RANGE = Range.fromExplicitRange(0, 1); |
| 275 Object.freeze(Range.PERCENT_RANGE); | 275 Object.freeze(Range.PERCENT_RANGE); |
| 276 | 276 |
| 277 return { | 277 return { |
| 278 Range: Range | 278 Range, |
| 279 }; | 279 }; |
| 280 }); | 280 }); |
| 281 </script> | 281 </script> |
| OLD | NEW |