Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/)

This CL is part I of IV (I broke down the 1280 files into 4 CLs).
Review URL: https://codereview.appspot.com/6485054

git-svn-id: http://skia.googlecode.com/svn/trunk@5262 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/gpu/GrTexture.h b/include/gpu/GrTexture.h
index c7bfb8c..5f6d535 100644
--- a/include/gpu/GrTexture.h
+++ b/include/gpu/GrTexture.h
@@ -42,16 +42,16 @@
     void resetFlag(GrTextureFlags flags) {
         fDesc.fFlags = fDesc.fFlags & ~flags;
     }
-    bool isSetFlag(GrTextureFlags flags) const { 
-        return 0 != (fDesc.fFlags & flags); 
+    bool isSetFlag(GrTextureFlags flags) const {
+        return 0 != (fDesc.fFlags & flags);
     }
 
     /**
      *  Approximate number of bytes used by the texture
      */
     virtual size_t sizeInBytes() const SK_OVERRIDE {
-        return (size_t) fDesc.fWidth * 
-                        fDesc.fHeight * 
+        return (size_t) fDesc.fWidth *
+                        fDesc.fHeight *
                         GrBytesPerPixel(fDesc.fConfig);
     }
 
@@ -81,11 +81,11 @@
      * @return    handle to render target or NULL if the texture is not a
      *            render target
      */
-    virtual GrRenderTarget* asRenderTarget() SK_OVERRIDE { 
-        return fRenderTarget; 
+    virtual GrRenderTarget* asRenderTarget() SK_OVERRIDE {
+        return fRenderTarget;
     }
-    virtual const GrRenderTarget* asRenderTarget() const SK_OVERRIDE { 
-        return fRenderTarget; 
+    virtual const GrRenderTarget* asRenderTarget() const SK_OVERRIDE {
+        return fRenderTarget;
     }
 
     // GrTexture
@@ -93,13 +93,13 @@
      * Convert from texels to normalized texture coords for POT textures
      * only.
      */
-    GrFixed normalizeFixedX(GrFixed x) const { 
+    GrFixed normalizeFixedX(GrFixed x) const {
         GrAssert(GrIsPow2(fDesc.fWidth));
-        return x >> fShiftFixedX; 
+        return x >> fShiftFixedX;
     }
-    GrFixed normalizeFixedY(GrFixed y) const { 
+    GrFixed normalizeFixedY(GrFixed y) const {
         GrAssert(GrIsPow2(fDesc.fHeight));
-        return y >> fShiftFixedY; 
+        return y >> fShiftFixedY;
     }
 
     /**
@@ -117,7 +117,7 @@
 
     /**
      *  Call this when the state of the native API texture object is
-     *  altered directly, without being tracked by skia. 
+     *  altered directly, without being tracked by skia.
      */
     virtual void invalidateCachedState() = 0;