Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@8120 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrDrawState.cpp b/src/gpu/GrDrawState.cpp
index fddce41..cd5fe1c 100644
--- a/src/gpu/GrDrawState.cpp
+++ b/src/gpu/GrDrawState.cpp
@@ -142,7 +142,7 @@
     }
 
     // sentinel to make sure effects don't try to use built-in attributes
-    static const int kBuiltInAttributeType = 10000; 
+    static const int kBuiltInAttributeType = 10000;
 
     // check our built-in indices
     if (fAttribIndices[kPosition_AttribIndex] >= kVertexAttribCnt) {
@@ -177,7 +177,7 @@
     }
 
     // now those set by effects
-    for (int s = 0; s < kNumStages; ++s) { 
+    for (int s = 0; s < kNumStages; ++s) {
         const GrEffectStage& stage = fStages[s];
         const GrEffectRef* effect = stage.getEffect();
         if (effect == NULL) {
@@ -199,7 +199,7 @@
             }
 
             GrSLType attributeType = effect->get()->vertexAttribType(i);
-            if (attributeTypes[attributeIndex] != -1 && 
+            if (attributeTypes[attributeIndex] != -1 &&
                 attributeTypes[attributeIndex] != attributeType) {
                 return false;
             }