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

Unified Diff: chrome/test/data/perf/rendering/throughput/canvas2d_balls_common/parse_url.js

Issue 124393006: Remove throughput_tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove change to window_snapshot.h Created 6 years, 11 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/test/data/perf/rendering/throughput/canvas2d_balls_common/parse_url.js
diff --git a/chrome/test/data/perf/rendering/throughput/canvas2d_balls_common/parse_url.js b/chrome/test/data/perf/rendering/throughput/canvas2d_balls_common/parse_url.js
deleted file mode 100644
index 5173e34691f2fe1c2c21b737f393a6857e3b4586..0000000000000000000000000000000000000000
--- a/chrome/test/data/perf/rendering/throughput/canvas2d_balls_common/parse_url.js
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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.
-
-function getArgValue(argname)
-{
- var url = window.location.href;
- var parts = url.split("?");
- if (parts.length == 0)
- {
- return "";
- }
- var arglist = parts[1];
- var args = arglist.split("&");
- for (i=0;i<args.length;i++)
- {
- var parts = args[i].split("=");
- if (parts[0] == argname)
- {
- value = parts[1];
- value = unescape(value);
- return value;
- }
- }
- return "";
-}

Powered by Google App Engine
This is Rietveld 408576698