Tests : Unused parameters cleanup
I removed unused parameters in the tests wherever it was trivial to do so. I'm trying to get the easy ones out of the way before we get into more involved discussions around this.
Review URL: https://codereview.appspot.com/7394055
git-svn-id: http://skia.googlecode.com/svn/trunk@7891 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp
index f6a18c1..0a562cf 100644
--- a/tests/PictureTest.cpp
+++ b/tests/PictureTest.cpp
@@ -279,7 +279,7 @@
}
}
-static void test_peephole(skiatest::Reporter* reporter) {
+static void test_peephole() {
SkRandom rand;
for (int j = 0; j < 100; j++) {
@@ -424,7 +424,7 @@
#else
test_bad_bitmap();
#endif
- test_peephole(reporter);
+ test_peephole();
test_gatherpixelrefs(reporter);
test_bitmap_with_encoded_data(reporter);
test_clone_empty(reporter);