Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@10175 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrResourceCache.cpp b/src/gpu/GrResourceCache.cpp
index 9dab021..00b2d51 100644
--- a/src/gpu/GrResourceCache.cpp
+++ b/src/gpu/GrResourceCache.cpp
@@ -289,7 +289,7 @@
     fPurging = true;
 
     this->internalPurge(extraCount, extraBytes);
-    if (((fEntryCount+extraCount) > fMaxCount || 
+    if (((fEntryCount+extraCount) > fMaxCount ||
         (fEntryBytes+extraBytes) > fMaxBytes) &&
         NULL != fOverbudgetCB) {
         // Despite the purge we're still over budget. See if Ganesh can
@@ -324,7 +324,7 @@
         while (NULL != entry) {
             GrAutoResourceCacheValidate atcv(this);
 
-            if ((fEntryCount+extraCount) <= fMaxCount && 
+            if ((fEntryCount+extraCount) <= fMaxCount &&
                 (fEntryBytes+extraBytes) <= fMaxBytes) {
                 withinBudget = true;
                 break;