Sanitizing source files in Housekeeper-Nightly
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 21 May 2013 07:01:40 +0000 (07:01 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 21 May 2013 07:01:40 +0000 (07:01 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@9207 2bbb7eff-a529-9590-31e7-b0007b416f81

include/core/SkPicture.h
src/gpu/GrPathRenderer.h
src/image/SkImage.cpp
src/image/SkImage_Base.h
src/images/SkImageEncoder.cpp

index 83aee4b..923995b 100644 (file)
@@ -261,7 +261,7 @@ class SkDrawPictureCallback {
 public:
     SkDrawPictureCallback() {}
     virtual ~SkDrawPictureCallback() {}
-    
+
     virtual bool abortDrawing() = 0;
 };
 
index 3d4c993..f1402d6 100644 (file)
@@ -1,4 +1,4 @@
-  
+
 /*
  * Copyright 2011 Google Inc.
  *
index bb4a336..1169459 100644 (file)
@@ -35,5 +35,3 @@ void SkImage::draw(SkCanvas* canvas, SkScalar x, SkScalar y,
 GrTexture* SkImage::getTexture() {
     return asIB(this)->onGetTexture();
 }
-
-
index 0b3ddb4..9ae13de 100644 (file)
@@ -16,7 +16,7 @@ public:
 
     virtual void onDraw(SkCanvas*, SkScalar x, SkScalar y, const SkPaint*) = 0;
     virtual GrTexture* onGetTexture() { return NULL; }
-    
+
     // return a read-only copy of the pixels. We promise to not modify them,
     // but only inspect them (or encode them).
     virtual bool getROPixels(SkBitmap*) const { return false; }
index 5f5ffb8..31fdcf9 100644 (file)
@@ -50,4 +50,3 @@ SkData* SkImageEncoder::EncodeData(const SkBitmap& bm, Type t, int quality) {
     SkAutoTDelete<SkImageEncoder> enc(SkImageEncoder::Create(t));
     return enc.get() ? enc.get()->encodeData(bm, quality) : NULL;
 }
-