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

Unified Diff: chrome/browser/resources/gpu_internals/timeline_test.html

Issue 7495036: about:gpu support for thread name metadata. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nonnested subrows Created 9 years, 5 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/gpu_internals/timeline_test.html
diff --git a/chrome/browser/resources/gpu_internals/timeline_test.html b/chrome/browser/resources/gpu_internals/timeline_test.html
deleted file mode 100644
index f8a121822a4aedd793adee80fbf3dec89c50cf99..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/gpu_internals/timeline_test.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2010 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.
--->
-<html>
-<head>
-<title></title>
-<link rel="stylesheet" href="timeline.css">
-<!--<script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.js"></script>-->
-<script src="../shared/js/cr.js"></script>
-<script src="../shared/js/cr/event_target.js"></script>
-<script src="../shared/js/cr/ui.js"></script>
-<script src="fast_rect_renderer.js"></script>
-<script src="tracing_controller_tests.js"></script>
-<script src="sorted_array_utils.js"></script>
-<script src="timeline.js"></script>
-<script src="timeline_track.js"></script>
-<script src="timeline_model.js"></script>
-<!--
-<script>
-
-goog.require('goog.testing.jsunit');
-
-</script>
--->
-</head>
-<body>
-<div id="sandbox"></div>
-<script>
-
-var sandbox = document.getElementById('sandbox');
-var timeline;
-
-function testTimeline() {
- model = new gpu.TimelineModel();
- model.importEvents(tracingControllerDataSets);
- timeline = new gpu.Timeline();
- timeline.model = model;
- sandbox.appendChild(timeline);
-}
-document.addEventListener('DOMContentLoaded', testTimeline);
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698