| 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 "";
|
| -}
|
|
|