Index: chrome/browser/resources/tracing/tracing_controller_tests.js |
diff --git a/chrome/browser/resources/gpu_internals/tracing_controller_tests.js b/chrome/browser/resources/tracing/tracing_controller_tests.js |
similarity index 98% |
rename from chrome/browser/resources/gpu_internals/tracing_controller_tests.js |
rename to chrome/browser/resources/tracing/tracing_controller_tests.js |
index 9c7cc65e37a419ecdddaa4e84b8601c5a3630aad..ddb95aefad461f5b1f7ca9aa06711e8740a1157d 100644 |
--- a/chrome/browser/resources/gpu_internals/tracing_controller_tests.js |
+++ b/chrome/browser/resources/tracing/tracing_controller_tests.js |
@@ -1,7 +1,7 @@ |
// Copyright (c) 2011 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. |
-cr.define('gpu', function() { |
+cr.define('tracing', function() { |
var dataSets = [ |
{ |
name: "big_trace", |
@@ -172,7 +172,7 @@ cr.define('gpu', function() { |
}, 0); |
} else { |
var req = new XMLHttpRequest(); |
- req.open('GET', "./gpu_internals/" + dataSet.events_url, true); |
+ req.open('GET', "./tracing/" + dataSet.events_url, true); |
req.onreadystatechange = function (aEvt) { |
if (req.readyState == 4) { |
tracingController.endTracing(); |