Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk/src@11092 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gpu/effects/GrBicubicEffect.h b/gpu/effects/GrBicubicEffect.h
index 618ef1a..0a40891 100644
--- a/gpu/effects/GrBicubicEffect.h
+++ b/gpu/effects/GrBicubicEffect.h
@@ -33,7 +33,7 @@
         return CreateEffectRef(effect);
     }
 
-    static GrEffectRef* Create(GrTexture* tex, const SkScalar coefficients[16], 
+    static GrEffectRef* Create(GrTexture* tex, const SkScalar coefficients[16],
                                const SkMatrix& matrix,
                                const GrTextureParams& p,
                                CoordsType coordsType = kLocal_CoordsType) {
@@ -45,7 +45,7 @@
         return Create(tex, gMitchellCoefficients);
     }
 
-    static GrEffectRef* Create(GrTexture* tex, 
+    static GrEffectRef* Create(GrTexture* tex,
                                const SkMatrix& matrix,
                                const GrTextureParams& p,
                                CoordsType coordsType = kLocal_CoordsType) {
@@ -54,13 +54,13 @@
 
 private:
     GrBicubicEffect(GrTexture*, const SkScalar coefficients[16]);
-    GrBicubicEffect(GrTexture*, const SkScalar coefficients[16], 
+    GrBicubicEffect(GrTexture*, const SkScalar coefficients[16],
                     const SkMatrix &matrix, const GrTextureParams &p, CoordsType coordsType);
     virtual bool onIsEqual(const GrEffect&) const SK_OVERRIDE;
     float    fCoefficients[16];
 
     GR_DECLARE_EFFECT_TEST;
-    
+
     static const SkScalar gMitchellCoefficients[16];
 
     typedef GrSingleTextureEffect INHERITED;