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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/tracing/tests.html
diff --git a/chrome/browser/resources/tracing/tests.html b/chrome/browser/resources/tracing/tests.html
deleted file mode 100644
index e4cb900fabb61d1b9631cb379afd320a8e4bee22..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/tracing/tests.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright (c) 2012 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<head>
-<title>All Tracing Tests</title>
-<script>
- tests = [
- 'overlay_test.html',
- 'timeline_model_test.html',
- 'timeline_track_test.html',
- 'linux_perf_importer_test.html',
- 'trace_event_importer_test.html',
- 'profiling_view_test.html',
- 'timeline_test.html',
- 'timeline_view_test.html',
- 'timeline_analysis_test.html',
- ];
-</script>
-<script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.js"></script>
-<script>
- goog.require('goog.testing.MultiTestRunner');
-</script>
-<link rel="stylesheet" href="http://closure-library.googlecode.com/svn/trunk/closure/goog/css/multitestrunner.css" type="text/css">
-</head>
-<body>
- <div id="runner"></div>
- <script>
- var testRunner = new goog.testing.MultiTestRunner()
- .setName(document.title)
- .setBasePath('./')
- .setPoolSize(8)
- .setStatsBucketSizes(5, 500)
- .setHidePasses(true)
- .addTests(tests);
- testRunner.render(document.getElementById('runner'));
- testRunner.start();
- </script>
-</body>
-</html>
« 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