Index: chrome/test/data/perf/rendering/throughput/canvas2d_balls_common/bouncing_balls_draw_ball_as_rect.js |
diff --git a/chrome/test/data/perf/rendering/throughput/canvas2d_balls_common/bouncing_balls_draw_ball_as_rect.js b/chrome/test/data/perf/rendering/throughput/canvas2d_balls_common/bouncing_balls_draw_ball_as_rect.js |
deleted file mode 100644 |
index e4e058b3b48c38fe585e24027fc72e20afa47f6a..0000000000000000000000000000000000000000 |
--- a/chrome/test/data/perf/rendering/throughput/canvas2d_balls_common/bouncing_balls_draw_ball_as_rect.js |
+++ /dev/null |
@@ -1,18 +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. |
- |
-var ballRadius; |
- |
-function drawBallInit(diameter) { |
- ballRadius = diameter / 2; |
-} |
- |
-function drawBall(x, y, angle) { |
- canvasContext.save(); |
- canvasContext.fillStyle = 'blue'; |
- canvasContext.translate(x, y); |
- canvasContext.rotate(angle); |
- canvasContext.fillRect(-ballRadius, -ballRadius, ballDiameter, ballDiameter); |
- canvasContext.restore(); |
-} |