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

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

Issue 2526613002: Return short-hand object literals to exportTo. (Closed)
Patch Set: manual fixes Created 4 years 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
« no previous file with comments | « tracing/tracing/base/raf.html ('k') | tracing/tracing/base/range_utils.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"> 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
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>
OLDNEW
« no previous file with comments | « tracing/tracing/base/raf.html ('k') | tracing/tracing/base/range_utils.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698