Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@12853 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/RegionBench.cpp b/bench/RegionBench.cpp
index 4ab173a..21c10af 100644
--- a/bench/RegionBench.cpp
+++ b/bench/RegionBench.cpp
@@ -132,10 +132,10 @@
rand.nextSScalar1(), rand.nextSScalar1());
r->sort();
}
-
+
RectSectBench(bool newWay) : fNewWay(newWay) {
fName.printf("rect_intersect_%s", newWay ? "new" : "old");
-
+
SkRandom rand;
for (int i = 0; i < N; i++) {
RandRect(&fArray0[i], rand);
@@ -149,7 +149,7 @@
protected:
virtual const char* onGetName() { return fName.c_str(); }
-
+
virtual void onDraw(const int loops, SkCanvas* canvas) {
for (int i = 0; i < loops; ++i) {
if (fNewWay) {
@@ -165,7 +165,7 @@
}
}
}
-
+
private:
typedef SkBenchmark INHERITED;
};