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

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: rebase Created 9 years, 4 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 dc791c9bdeb9ce635910ebae2c87019aa2c106b4..3331ff3eef3f3dae613c705ad5f3474808352243 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",
@@ -198,7 +198,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