Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@5798 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/TableBench.cpp b/bench/TableBench.cpp
index 3c092aa..e6efe25 100644
--- a/bench/TableBench.cpp
+++ b/bench/TableBench.cpp
@@ -30,13 +30,13 @@
     static const int kNumRows = 48;
     static const int kNumCols = 32;
 
-    TableBench(void* param) 
-        : INHERITED(param) { 
+    TableBench(void* param)
+        : INHERITED(param) {
     }
 
 protected:
-    virtual const char* onGetName() { 
-        return "tablebench"; 
+    virtual const char* onGetName() {
+        return "tablebench";
     }
 
     virtual void onDraw(SkCanvas* canvas) {
@@ -50,21 +50,21 @@
         for (int i = 0; i < kNumIterations; ++i) {
             for (int row = 0; row < kNumRows; ++row) {
                 for (int col = 0; col < kNumCols; ++col) {
-                    SkRect cell = SkRect::MakeLTRB(col * kCellWidth, 
-                                                   row * kCellHeight, 
-                                                   (col+1) * kCellWidth, 
+                    SkRect cell = SkRect::MakeLTRB(col * kCellWidth,
+                                                   row * kCellHeight,
+                                                   (col+1) * kCellWidth,
                                                    (row+1) * kCellHeight);
                     canvas->drawRect(cell, cellPaint);
 
-                    SkRect bottom = SkRect::MakeLTRB(col * kCellWidth, 
-                                                     row * kCellHeight + (kCellHeight-SK_Scalar1), 
-                                                     (col+1) * kCellWidth, 
+                    SkRect bottom = SkRect::MakeLTRB(col * kCellWidth,
+                                                     row * kCellHeight + (kCellHeight-SK_Scalar1),
+                                                     (col+1) * kCellWidth,
                                                      (row+1) * kCellHeight);
                     canvas->drawRect(bottom, borderPaint);
 
-                    SkRect right = SkRect::MakeLTRB(col * kCellWidth + (kCellWidth-SK_Scalar1), 
-                                                    row * kCellHeight, 
-                                                    (col+1) * kCellWidth, 
+                    SkRect right = SkRect::MakeLTRB(col * kCellWidth + (kCellWidth-SK_Scalar1),
+                                                    row * kCellHeight,
+                                                    (col+1) * kCellWidth,
                                                     (row+1) * kCellHeight);
                     canvas->drawRect(right, borderPaint);
                 }