Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@8350 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp
index eee3307..e2c41d1 100644
--- a/src/gpu/GrContext.cpp
+++ b/src/gpu/GrContext.cpp
@@ -1026,7 +1026,7 @@
     SkRect ovalRect;
     bool isOval = path.isOval(&ovalRect);
 
-    if (!isOval || path.isInverseFillType() 
+    if (!isOval || path.isInverseFillType()
         || !fOvalRenderer->drawOval(target, this, paint, ovalRect, stroke)) {
         this->internalDrawPath(target, paint, path, stroke);
     }
diff --git a/src/gpu/GrOvalRenderer.cpp b/src/gpu/GrOvalRenderer.cpp
index 4847e0e..2d25d54 100644
--- a/src/gpu/GrOvalRenderer.cpp
+++ b/src/gpu/GrOvalRenderer.cpp
@@ -40,7 +40,7 @@
 
 }
 
-bool GrOvalRenderer::drawOval(GrDrawTarget* target, const GrContext* context, const GrPaint& paint, 
+bool GrOvalRenderer::drawOval(GrDrawTarget* target, const GrContext* context, const GrPaint& paint,
                     const GrRect& oval, const SkStrokeRec& stroke)
 {
     if (!paint.isAntiAlias()) {
@@ -49,8 +49,8 @@
 
     const SkMatrix& vm = context->getMatrix();
 
-    // we can draw circles 
-    if (SkScalarNearlyEqual(oval.width(), oval.height()) 
+    // we can draw circles
+    if (SkScalarNearlyEqual(oval.width(), oval.height())
         && circle_stays_circle(vm)) {
         drawCircle(target, paint, oval, stroke);
 
@@ -65,7 +65,7 @@
     return true;
 }
 
-void GrOvalRenderer::drawCircle(GrDrawTarget* target, 
+void GrOvalRenderer::drawCircle(GrDrawTarget* target,
                                 const GrPaint& paint,
                                 const GrRect& circle,
                                 const SkStrokeRec& stroke)
@@ -109,7 +109,7 @@
         kEdgeEffectStage = GrPaint::kTotalStages,
     };
     drawState->setAttribBindings(GrDrawState::kDefault_AttribBindings);
-    
+
     GrEffectRef* effect = GrCircleEdgeEffect::Create(isStroked);
     static const int kCircleEdgeAttrIndex = 1;
     drawState->setEffect(kEdgeEffectStage, effect, kCircleEdgeAttrIndex)->unref();
@@ -156,7 +156,7 @@
     target->drawNonIndexed(kTriangleStrip_GrPrimitiveType, 0, 4);
 }
 
-void GrOvalRenderer::drawEllipse(GrDrawTarget* target, 
+void GrOvalRenderer::drawEllipse(GrDrawTarget* target,
                                  const GrPaint& paint,
                                  const GrRect& ellipse,
                                  const SkStrokeRec& stroke)
@@ -275,4 +275,3 @@
 
     target->drawNonIndexed(kTriangleStrip_GrPrimitiveType, 0, 4);
 }
-