Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@14002 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrPictureUtils.cpp b/src/gpu/GrPictureUtils.cpp
index 20b8828..e8c3b50 100644
--- a/src/gpu/GrPictureUtils.cpp
+++ b/src/gpu/GrPictureUtils.cpp
@@ -8,7 +8,7 @@
 #include "GrPictureUtils.h"
 #include "SkDevice.h"
 
-// The GrGather device performs GPU-backend-specific preprocessing on 
+// The GrGather device performs GPU-backend-specific preprocessing on
 // a picture. The results are stored in a GPUAccelData.
 //
 // Currently the only interesting work is done in drawDevice (i.e., when a
@@ -27,7 +27,7 @@
         fInfo.fRestoreOpID = 0;
         fInfo.fHasNestedLayers = false;
 
-        fEmptyBitmap.setConfig(SkImageInfo::Make(fInfo.fSize.fWidth, 
+        fEmptyBitmap.setConfig(SkImageInfo::Make(fInfo.fSize.fWidth,
                                                  fInfo.fSize.fHeight,
                                                  kUnknown_SkColorType,
                                                  kIgnore_SkAlphaType));
@@ -187,11 +187,11 @@
 //      GrGatherDevice dev(w, h, picture, accelData);
 //      GrGatherCanvas canvas(..., picture);
 //      canvas.gather();
-// 
-// which is all just to fill in 'accelData'     
+//
+// which is all just to fill in 'accelData'
 class SK_API GrGatherCanvas : public SkCanvas {
 public:
-    GrGatherCanvas(GrGatherDevice* device, SkPicture* pict) 
+    GrGatherCanvas(GrGatherDevice* device, SkPicture* pict)
         : INHERITED(device)
         , fPicture(pict) {
     }
@@ -232,8 +232,8 @@
     typedef SkCanvas INHERITED;
 };
 
-// GatherGPUInfo is only intended to be called within the context of SkGpuDevice's 
-// EXPERIMENTAL_optimize method. 
+// GatherGPUInfo is only intended to be called within the context of SkGpuDevice's
+// EXPERIMENTAL_optimize method.
 void GatherGPUInfo(SkPicture* pict, GPUAccelData* accelData) {
     if (0 == pict->width() || 0 == pict->height()) {
         return ;
@@ -244,4 +244,3 @@
 
     canvas.gather();
 }
-