Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@7746 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/utils/SkDebugUtils.h b/include/utils/SkDebugUtils.h
index 64e2935..2fa6d41 100644
--- a/include/utils/SkDebugUtils.h
+++ b/include/utils/SkDebugUtils.h
@@ -12,7 +12,7 @@
 
 #include "SkTypes.h"
 
-// These functions dump 0, 1, and 2d arrays of data in a format that's 
+// These functions dump 0, 1, and 2d arrays of data in a format that's
 // compatible with Mathematica for quick visualization
 
 
@@ -21,7 +21,7 @@
     SkDEBUGFAIL("Need to specialize SkDebugDumpMathematica for your type, sorry.");
 }
 
-template<class T> 
+template<class T>
 inline void SkDebugDumpMathematica(const char *name, const T *array, int size) {
     SkDebugf(name);
     SkDebugf(" = {");
@@ -32,7 +32,7 @@
     SkDebugf("};\n");
 }
 
-template<class T> 
+template<class T>
 inline void SkDebugDumpMathematica(const char *name, const T *array, int width, int height) {
     SkDebugf(name);
     SkDebugf(" = {\n");
@@ -52,7 +52,7 @@
     SkDebugf("\n};\n");
 }
 
-template<class T> 
+template<class T>
 inline void SkDebugDumpMathematica( const char *name, const T val ) {
     SkDebugf(name);
     SkDebugf(" = ");
@@ -60,32 +60,32 @@
     SkDebugf(";\n");
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<uint8_t>( const uint8_t val ) {
     SkDebugf("%u", val);
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<unsigned int>( const unsigned int val ) {
     SkDebugf("%u", val);
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<int>( const int val ) {
     SkDebugf("%d", val);
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<size_t>( const size_t val ) {
     SkDebugf("%u", val);
 }
 
-template<> 
+template<>
 void SkDebugDumpMathematica<const char *>( const char * val ) {
     SkDebugf("%s", val);
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<float>( float val ) {
     SkDebugf("%f", val);
 }