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

Side by Side Diff: chrome/browser/resources/tracing/tests.html

Issue 10543144: Remove old tracing code now that it has moved to third_party. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <!--
4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8 <head>
9 <title>All Tracing Tests</title>
10 <script>
11 tests = [
12 'overlay_test.html',
13 'timeline_model_test.html',
14 'timeline_track_test.html',
15 'linux_perf_importer_test.html',
16 'trace_event_importer_test.html',
17 'profiling_view_test.html',
18 'timeline_test.html',
19 'timeline_view_test.html',
20 'timeline_analysis_test.html',
21 ];
22 </script>
23 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.j s"></script>
24 <script>
25 goog.require('goog.testing.MultiTestRunner');
26 </script>
27 <link rel="stylesheet" href="http://closure-library.googlecode.com/svn/trunk/clo sure/goog/css/multitestrunner.css" type="text/css">
28 </head>
29 <body>
30 <div id="runner"></div>
31 <script>
32 var testRunner = new goog.testing.MultiTestRunner()
33 .setName(document.title)
34 .setBasePath('./')
35 .setPoolSize(8)
36 .setStatsBucketSizes(5, 500)
37 .setHidePasses(true)
38 .addTests(tests);
39 testRunner.render(document.getElementById('runner'));
40 testRunner.start();
41 </script>
42 </body>
43 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/tracing/test_utils.js ('k') | chrome/browser/resources/tracing/tests/async_begin_end.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698