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

Side by Side Diff: tracing/tracing/base/unittest/test_suite.html

Issue 2771723003: [tracing] Move math utilities from base into their own subdirectory (attempt 2) (Closed)
Patch Set: rebase 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) 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/guid.html"> 8 <link rel="import" href="/tracing/base/guid.html">
9 <link rel="import" href="/tracing/base/statistics.html"> 9 <link rel="import" href="/tracing/base/math/statistics.html">
10 <link rel="import" href="/tracing/base/unittest/constants.html"> 10 <link rel="import" href="/tracing/base/unittest/constants.html">
11 <link rel="import" href="/tracing/base/unittest/test_case.html"> 11 <link rel="import" href="/tracing/base/unittest/test_case.html">
12 12
13 <script> 13 <script>
14 'use strict'; 14 'use strict';
15 15
16 tr.exportTo('tr.b.unittest', function() { 16 tr.exportTo('tr.b.unittest', function() {
17 var TestCase = tr.b.unittest.TestCase; 17 var TestCase = tr.b.unittest.TestCase;
18 var PerfTestCase = tr.b.unittest.PerfTestCase; 18 var PerfTestCase = tr.b.unittest.PerfTestCase;
19 19
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 throw new Error('testSuites can only be defined during suite loading'); 126 throw new Error('testSuites can only be defined during suite loading');
127 global._currentSuiteLoader.constructAndRegisterTestSuite(suiteConstructor); 127 global._currentSuiteLoader.constructAndRegisterTestSuite(suiteConstructor);
128 } 128 }
129 129
130 return { 130 return {
131 TestSuite, 131 TestSuite,
132 testSuite, 132 testSuite,
133 }; 133 };
134 }); 134 });
135 </script> 135 </script>
OLDNEW
« no previous file with comments | « tracing/tracing/base/unittest/test_case.html ('k') | tracing/tracing/extras/android/android_auditor.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698