Sanitizing source files in Housekeeper-Nightly
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Sat, 15 Mar 2014 03:02:32 +0000 (03:02 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Sat, 15 Mar 2014 03:02:32 +0000 (03:02 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@13820 2bbb7eff-a529-9590-31e7-b0007b416f81

gm/imagefilterscropexpand.cpp
src/core/SkDistanceFieldGen.cpp

index 9373696..c9601b0 100644 (file)
@@ -82,7 +82,7 @@ protected:
         canvas->saveLayer(&rect, &paint);
         canvas->drawBitmap(bitmap, 0, 0);
         canvas->restore();
-        
+
         SkPaint strokePaint;
         strokePaint.setColor(0xFFFF0000);
         strokePaint.setStyle(SkPaint::kStroke_Style);
@@ -127,7 +127,7 @@ protected:
             rect.outset(SkIntToScalar(outset),
                         SkIntToScalar(outset));
             SkImageFilter::CropRect big_rect(rect, SkImageFilter::CropRect::kHasAll_CropEdge);
-            
+
             draw(canvas, checkerboard, rect, SkColorFilterImageFilter::Create(
                 cf_alpha_trans, noop_cropped.get(), &big_rect));
 
index 44bea1b..f453afe 100755 (executable)
@@ -28,7 +28,7 @@ enum NeighborFlags {
     kNeighborFlagCount        = 8
 };
 
-// We treat an "edge" as a place where we cross from black to non-black, or vice versa. 
+// We treat an "edge" as a place where we cross from black to non-black, or vice versa.
 // 'neighborFlags' is used to limit the directions in which we test to avoid indexing
 // outside of the image
 static bool found_edge(const unsigned char* imagePtr, int width, int neighborFlags) {