Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@13871 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/SurfaceTest.cpp b/tests/SurfaceTest.cpp
index c0839a5..705ea14 100644
--- a/tests/SurfaceTest.cpp
+++ b/tests/SurfaceTest.cpp
@@ -324,13 +324,13 @@
     REPORTER_ASSERT(reporter, expectedCachedResources == context->getGpuTextureCacheResourceCount());
 
     // Verify that all the cached resources are locked in cache.
-    context->freeGpuResources(); 
+    context->freeGpuResources();
     REPORTER_ASSERT(reporter, expectedCachedResources == context->getGpuTextureCacheResourceCount());
 
     // Verify that all the cached resources are unlocked upon surface release
     surface.reset(0);
     context->freeGpuResources();
-    REPORTER_ASSERT(reporter, 0 == context->getGpuTextureCacheResourceCount()); 
+    REPORTER_ASSERT(reporter, 0 == context->getGpuTextureCacheResourceCount());
 }
 
 static void Test_crbug263329(skiatest::Reporter* reporter,
diff --git a/tests/WritePixelsTest.cpp b/tests/WritePixelsTest.cpp
index 0870127..5562331 100644
--- a/tests/WritePixelsTest.cpp
+++ b/tests/WritePixelsTest.cpp
@@ -190,7 +190,7 @@
     SkImageInfo canvasInfo;
     size_t canvasRowBytes;
     const uint32_t* canvasPixels;
-    
+
     // Can't use canvas->peekPixels(), as we are trying to look at GPU pixels sometimes as well.
     // At some point this will be unsupported, as we won't allow accessBitmap() to magically call
     // readPixels for the client.
@@ -441,7 +441,7 @@
                     for (size_t c = 0; c < SK_ARRAY_COUNT(gSrcConfigs); ++c) {
                         const SkColorType ct = gSrcConfigs[c].fColorType;
                         const SkAlphaType at = gSrcConfigs[c].fAlphaType;
-                
+
                         fillCanvas(&canvas);
                         SkBitmap bmp;
                         REPORTER_ASSERT(reporter, setupBitmap(&bmp, ct, at, rect.width(),