Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/)

This CL is part I of IV (I broke down the 1280 files into 4 CLs).
Review URL: https://codereview.appspot.com/6485054

git-svn-id: http://skia.googlecode.com/svn/trunk@5262 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/effects/gradients/SkTwoPointConicalGradient.h b/src/effects/gradients/SkTwoPointConicalGradient.h
index 45ed15b..4ce7280 100644
--- a/src/effects/gradients/SkTwoPointConicalGradient.h
+++ b/src/effects/gradients/SkTwoPointConicalGradient.h
@@ -26,14 +26,14 @@
 
     void init(const SkPoint& center0, SkScalar rad0,
               const SkPoint& center1, SkScalar rad1);
-    
+
     // used by setup and nextT
     float   fRelX, fRelY, fIncX, fIncY;
     float   fB, fDB;
-    
+
     void setup(SkScalar fx, SkScalar fy, SkScalar dfx, SkScalar dfy);
     SkFixed nextT();
-    
+
     static bool DontDrawT(SkFixed t) {
         return kDontDrawT == (uint32_t)t;
     }
@@ -50,7 +50,7 @@
                               const SkColor colors[], const SkScalar pos[],
                               int colorCount, SkShader::TileMode mode,
                               SkUnitMapper* mapper);
-    
+
     virtual void shadeSpan(int x, int y, SkPMColor* dstCParam,
                            int count) SK_OVERRIDE;
     virtual bool setContext(const SkBitmap& device,
@@ -69,11 +69,11 @@
     SkScalar getDiffRadius() const { return fRadius2 - fRadius1; }
 
     SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTwoPointConicalGradient)
-    
+
 protected:
     SkTwoPointConicalGradient(SkFlattenableReadBuffer& buffer);
     virtual void flatten(SkFlattenableWriteBuffer& buffer) const SK_OVERRIDE;
-    
+
 private:
     typedef SkGradientShaderBase INHERITED;
     const SkPoint fCenter1;