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

Side by Side Diff: tracing/tracing/model/time_to_object_instance_map_test.html

Issue 2769203003: [tracing] Fix import ordering in all files under tracing/ (Closed)
Patch Set: Created 3 years, 9 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) 2013 The Chromium Authors. All rights reserved. 3 Copyright (c) 2013 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/core/test_utils.html"> 8 <link rel="import" href="/tracing/core/test_utils.html">
9 <link rel="import" href="/tracing/model/object_instance.html">
9 <link rel="import" href="/tracing/model/time_to_object_instance_map.html"> 10 <link rel="import" href="/tracing/model/time_to_object_instance_map.html">
10 <link rel="import" href="/tracing/model/object_instance.html">
11 11
12 <script> 12 <script>
13 'use strict'; 13 'use strict';
14 14
15 tr.b.unittest.testSuite(function() { 15 tr.b.unittest.testSuite(function() {
16 var createObjectInstance = function(parent, id, category, name, creationTs) { 16 var createObjectInstance = function(parent, id, category, name, creationTs) {
17 return new tr.model.ObjectInstance( 17 return new tr.model.ObjectInstance(
18 parent, id, category, name, creationTs); 18 parent, id, category, name, creationTs);
19 }; 19 };
20 20
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 154
155 assert.equal(i10.creationTs, 10); 155 assert.equal(i10.creationTs, 10);
156 assert.equal(i10.deletionTs, 20); 156 assert.equal(i10.deletionTs, 20);
157 assert.notEqual(i25, i10); 157 assert.notEqual(i25, i10);
158 assert.equal(i25.creationTs, 25); 158 assert.equal(i25.creationTs, 25);
159 assert.equal(i25.deletionTs, Number.MAX_VALUE); 159 assert.equal(i25.deletionTs, Number.MAX_VALUE);
160 }); 160 });
161 }); 161 });
162 </script> 162 </script>
163 163
OLDNEW
« no previous file with comments | « tracing/tracing/extras/chrome/cc/cc.html ('k') | tracing/tracing/ui/analysis/stack_frame_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698