Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@12477 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/core/SkPathRef.h b/include/core/SkPathRef.h
index fd9b339..5d55c72 100644
--- a/include/core/SkPathRef.h
+++ b/include/core/SkPathRef.h
@@ -133,7 +133,7 @@
      *              optimization for performance and so some paths that are in
      *              fact ovals can report false.
      */
-    bool isOval(SkRect* rect) const { 
+    bool isOval(SkRect* rect) const {
         if (fIsOval && NULL != rect) {
             *rect = getBounds();
         }
diff --git a/include/gpu/GrTypes.h b/include/gpu/GrTypes.h
index 67dcf51..0bb432d 100644
--- a/include/gpu/GrTypes.h
+++ b/include/gpu/GrTypes.h
@@ -252,7 +252,7 @@
     // kA8   (0) -> 1
     // kA565 (1) -> 2
     // kA888 (2) -> 4
-    // kARGB (3) -> 4    
+    // kARGB (3) -> 4
     static const int sBytesPerPixel[] = { 1, 2, 4, 4 };
     SK_COMPILE_ASSERT(SK_ARRAY_COUNT(sBytesPerPixel) == kMaskFormatCount, array_size_mismatch);
 
diff --git a/src/gpu/GrTextStrike.cpp b/src/gpu/GrTextStrike.cpp
index a4d3575..bae5361 100644
--- a/src/gpu/GrTextStrike.cpp
+++ b/src/gpu/GrTextStrike.cpp
@@ -47,9 +47,9 @@
 }
 
 static GrPixelConfig mask_format_to_pixel_config(GrMaskFormat format) {
-    static const GrPixelConfig sPixelConfigs[] = { 
-        kAlpha_8_GrPixelConfig, 
-        kRGB_565_GrPixelConfig, 
+    static const GrPixelConfig sPixelConfigs[] = {
+        kAlpha_8_GrPixelConfig,
+        kRGB_565_GrPixelConfig,
         kSkia8888_GrPixelConfig,
         kSkia8888_GrPixelConfig
     };
@@ -59,11 +59,11 @@
 }
 
 static int mask_format_to_atlas_index(GrMaskFormat format) {
-    static const int sAtlasIndices[] = { 
-        GrFontCache::kA8_AtlasType, 
-        GrFontCache::k565_AtlasType, 
-        GrFontCache::k8888_AtlasType, 
-        GrFontCache::k8888_AtlasType 
+    static const int sAtlasIndices[] = {
+        GrFontCache::kA8_AtlasType,
+        GrFontCache::k565_AtlasType,
+        GrFontCache::k8888_AtlasType,
+        GrFontCache::k8888_AtlasType
     };
     SK_COMPILE_ASSERT(SK_ARRAY_COUNT(sAtlasIndices) == kMaskFormatCount, array_size_mismatch);
 
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index 03fe3d4..06ecff6 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -1951,9 +1951,9 @@
 
         SkPath p1;      // Leave p1 non-unique (i.e., the empty path)
 
-        p.transform(matrix, &p1); 
+        p.transform(matrix, &p1);
         SkPoint pts1[kPtCount];
-        int count = p1.getPoints(pts1, kPtCount); 
+        int count = p1.getPoints(pts1, kPtCount);
         REPORTER_ASSERT(reporter, kPtCount == count);
         for (int i = 0; i < count; ++i) {
             SkPoint newPt = SkPoint::Make(pts[i].fX * 2, pts[i].fY * 3);