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

Unified Diff: chrome/browser/resources/tracing/tracing_controller_tests.js

Issue 7555005: Moving the contents of chrome://gpu Profiling to chrome://tracing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove tabs 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/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();

Powered by Google App Engine
This is Rietveld 408576698