Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@10402 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/core/SkScalerContext.cpp b/src/core/SkScalerContext.cpp
index a7b4fa5..95360cd 100644
--- a/src/core/SkScalerContext.cpp
+++ b/src/core/SkScalerContext.cpp
@@ -434,7 +434,7 @@
     // This means using every 4th FIR output value of each FIR and discarding the rest.
     // The FIRs are aligned, and the coefficients reach 5 samples to each side of their 'center'.
     // (For r and b this is technically incorrect, but the coeffs outside round to zero anyway.)
-    
+
     // These are in some fixed point repesentation.
     // Adding up to more than one simulates ink spread.
     // For implementation reasons, these should never add up to more than two.
diff --git a/src/ports/SkFontHost_win.cpp b/src/ports/SkFontHost_win.cpp
index 3fb0b57..fd4ff9f 100755
--- a/src/ports/SkFontHost_win.cpp
+++ b/src/ports/SkFontHost_win.cpp
@@ -607,7 +607,7 @@
     }
     SetGraphicsMode(fDDC, GM_ADVANCED);
     SetBkMode(fDDC, TRANSPARENT);
-    
+
     SkPoint h = SkPoint::Make(SK_Scalar1, 0);
     // A is the total matrix.
     SkMatrix A;
@@ -1355,7 +1355,7 @@
 
 class GDIGlyphbufferPointIter {
 public:
-    GDIGlyphbufferPointIter(const uint8_t* glyphbuf, DWORD total_size) 
+    GDIGlyphbufferPointIter(const uint8_t* glyphbuf, DWORD total_size)
         : fHeaderIter(glyphbuf, total_size), fCurveIter(), fPointIter()
     { }
 
@@ -1394,7 +1394,7 @@
     /** Iterates over all of the polygon headers in a glyphbuf. */
     class GDIPolygonHeaderIter {
     public:
-        GDIPolygonHeaderIter(const uint8_t* glyphbuf, DWORD total_size) 
+        GDIPolygonHeaderIter(const uint8_t* glyphbuf, DWORD total_size)
             : fCurPolygon(reinterpret_cast<const TTPOLYGONHEADER*>(glyphbuf))
             , fEndPolygon(SkTAddOffset<const TTPOLYGONHEADER>(glyphbuf, total_size))
         { }