Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Side by Side Diff: tracing/tracing/base/math/range.html

Issue 2995843002: Merge iteration_helpers into utils.html. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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">
10 <link rel="import" href="/tracing/base/math/math.html"> 9 <link rel="import" href="/tracing/base/math/math.html">
10 <link rel="import" href="/tracing/base/utils.html">
11 11
12 <script> 12 <script>
13 'use strict'; 13 'use strict';
14 14
15 /** 15 /**
16 * @fileoverview Quick range computations. 16 * @fileoverview Quick range computations.
17 */ 17 */
18 tr.exportTo('tr.b.math', function() { 18 tr.exportTo('tr.b.math', function() {
19 function Range() { 19 function Range() {
20 this.isEmpty_ = true; 20 this.isEmpty_ = true;
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 }; 316 };
317 317
318 Range.PERCENT_RANGE = Range.fromExplicitRange(0, 1); 318 Range.PERCENT_RANGE = Range.fromExplicitRange(0, 1);
319 Object.freeze(Range.PERCENT_RANGE); 319 Object.freeze(Range.PERCENT_RANGE);
320 320
321 return { 321 return {
322 Range, 322 Range,
323 }; 323 };
324 }); 324 });
325 </script> 325 </script>
OLDNEW
« no previous file with comments | « tracing/tracing/base/iteration_helpers_test.html ('k') | tracing/tracing/base/math/range_utils.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698