Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@12283 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/core/SkImageInfo.h b/include/core/SkImageInfo.h
index 270ff01..c22249b 100644
--- a/include/core/SkImageInfo.h
+++ b/include/core/SkImageInfo.h
@@ -20,7 +20,7 @@
      *  in their alpha field, but intended the RGB to be treated as opaque.
      */
     kIgnore_SkAlphaType,
-    
+
     /**
      *  All pixels are stored as opaque. This differs slightly from kIgnore in
      *  that kOpaque has correct "opaque" values stored in the pixels, while
@@ -28,13 +28,13 @@
      *  as opaque.
      */
     kOpaque_SkAlphaType,
-    
+
     /**
      *  All pixels have their alpha premultiplied in their color components.
      *  This is the natural format for the rendering target pixels.
      */
     kPremul_SkAlphaType,
-    
+
     /**
      *  All pixels have their color components stored without any regard to the
      *  alpha. e.g. this is the default configuration for PNG images.
@@ -43,7 +43,7 @@
      *  generate this on output.
      */
     kUnpremul_SkAlphaType,
-    
+
     kLastEnum_SkAlphaType = kUnpremul_SkAlphaType
 };