Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@8785 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/DataRefTest.cpp b/tests/DataRefTest.cpp
index 449149a..26c263a 100644
--- a/tests/DataRefTest.cpp
+++ b/tests/DataRefTest.cpp
@@ -47,10 +47,10 @@
     for (int i = 0; i < count; ++i) {
         sizes[i] = strlen(str[i]) + 1;
     }
-    
+
     SkAutoTUnref<SkDataTable> table(SkDataTable::NewCopyArrays(
                                         (const void*const*)str, sizes, count));
-    
+
     REPORTER_ASSERT(reporter, table->count() == count);
     for (int i = 0; i < count; ++i) {
         size_t size;
@@ -58,7 +58,7 @@
         REPORTER_ASSERT(reporter, !strcmp(table->atDataT<const char>(i, &size),
                                           str[i]));
         REPORTER_ASSERT(reporter, size == sizes[i]);
-        
+
         const char* s = table->atStr(i);
         REPORTER_ASSERT(reporter, strlen(s) == strlen(str[i]));
     }
@@ -71,12 +71,12 @@
     int count = SK_ARRAY_COUNT(str);
 
     SkDataTableBuilder builder(16);
-    
+
     for (int i = 0; i < count; ++i) {
         builder.append(str[i], strlen(str[i]) + 1);
     }
     SkAutoTUnref<SkDataTable> table(builder.createDataTable());
-    
+
     REPORTER_ASSERT(reporter, table->count() == count);
     for (int i = 0; i < count; ++i) {
         size_t size;
@@ -84,7 +84,7 @@
         REPORTER_ASSERT(reporter, !strcmp(table->atDataT<const char>(i, &size),
                                           str[i]));
         REPORTER_ASSERT(reporter, size == strlen(str[i]) + 1);
-        
+
         const char* s = table->atStr(i);
         REPORTER_ASSERT(reporter, strlen(s) == strlen(str[i]));
     }