[go: nahoru, domu]

Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk/src@14453 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/core/SkPicture.cpp b/core/SkPicture.cpp
index 7bf43b5..3b04906 100644
--- a/core/SkPicture.cpp
+++ b/core/SkPicture.cpp
@@ -262,13 +262,13 @@
 
                 /* The alternative to doing this is to have a clone method on the paint and have it
                  * make the deep copy of its internal structures as needed. The holdup to doing
-                 * that is at this point we would need to pass the SkBitmapHeap so that we don't 
+                 * that is at this point we would need to pass the SkBitmapHeap so that we don't
                  * unnecessarily flatten the pixels in a bitmap shader.
                  */
                 copyInfo.paintData.setCount(paintCount);
 
-                /* Use an SkBitmapHeap to avoid flattening bitmaps in shaders. If there already is 
-                 * one, use it. If this SkPicturePlayback was created from a stream, fBitmapHeap 
+                /* Use an SkBitmapHeap to avoid flattening bitmaps in shaders. If there already is
+                 * one, use it. If this SkPicturePlayback was created from a stream, fBitmapHeap
                  * will be NULL, so create a new one.
                  */
                 if (fPlayback->fBitmapHeap.get() == NULL) {
diff --git a/effects/SkBlurDrawLooper.cpp b/effects/SkBlurDrawLooper.cpp
index 5af02db..372dcf0 100644
--- a/effects/SkBlurDrawLooper.cpp
+++ b/effects/SkBlurDrawLooper.cpp
@@ -36,16 +36,16 @@
         uint32_t flags = fBlurFlags & kIgnoreTransform_BlurFlag ?
                             SkBlurMaskFilter::kIgnoreTransform_BlurFlag :
                             SkBlurMaskFilter::kNone_BlurFlag;
-        
+
         flags |= fBlurFlags & kHighQuality_BlurFlag ?
                     SkBlurMaskFilter::kHighQuality_BlurFlag :
                     SkBlurMaskFilter::kNone_BlurFlag;
-        
+
         fBlur = SkBlurMaskFilter::Create(kNormal_SkBlurStyle, fSigma, flags);
     } else {
         fBlur = NULL;
     }
-    
+
     if (fBlurFlags & kOverrideColor_BlurFlag) {
         // Set alpha to 1 for the override since transparency will already
         // be baked into the blurred mask.
diff --git a/gpu/gl/GrGLAssembleInterface.h b/gpu/gl/GrGLAssembleInterface.h
index 1a38caf..36a4513 100644
--- a/gpu/gl/GrGLAssembleInterface.h
+++ b/gpu/gl/GrGLAssembleInterface.h
@@ -16,4 +16,3 @@
  * get() to get each function address. ctx is a generic ptr passed to and interpreted by get().
  */
 const GrGLInterface* GrGLAssembleGLInterface(void* ctx, GrGLGetProc get);
-
diff --git a/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp b/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp
index 8ae9193..ab3f0ad 100644
--- a/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp
+++ b/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp
@@ -37,7 +37,7 @@
 class GLProcGetter {
 public:
     GLProcGetter() {}
-    
+
     GrGLFuncPtr getProc(const char name[]) const {
         return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
     }
diff --git a/gpu/gl/mesa/GrGLCreateMesaInterface.cpp b/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
index a1b4b03..a95b6fc 100644
--- a/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
+++ b/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
@@ -20,6 +20,6 @@
 const GrGLInterface* GrGLCreateMesaInterface() {
     if (NULL == OSMesaGetCurrentContext()) {
         return NULL;
-    }    
+    }
     return GrGLAssembleGLInterface(NULL, osmesa_get);
 }
diff --git a/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp b/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
index 19955ec..ddbfe5d 100644
--- a/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
+++ b/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
@@ -23,4 +23,3 @@
     }
     return GrGLAssembleGLInterface(NULL, glx_get);
 }
-