Sanitizing source files in Skia_Periodic_House_Keeping
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 13 Nov 2012 21:46:06 +0000 (21:46 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 13 Nov 2012 21:46:06 +0000 (21:46 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@6409 2bbb7eff-a529-9590-31e7-b0007b416f81

include/core/SkPicture.h
src/core/SkPath.cpp
tests/PathTest.cpp

index d513373..c8245e3 100644 (file)
@@ -161,7 +161,7 @@ protected:
     static const int PICTURE_VERSION = 9;
 
     // fPlayback, fRecord, fWidth & fHeight are protected to allow derived classes to
-    // install their own SkPicturePlayback-derived players,SkPictureRecord-derived 
+    // install their own SkPicturePlayback-derived players,SkPictureRecord-derived
     // recorders and set the picture size
     SkPicturePlayback* fPlayback;
     SkPictureRecord* fRecord;
index d4ef1a6..d1b90dd 100644 (file)
@@ -2501,7 +2501,7 @@ bool SkPath::cheapComputeDirection(Direction* dir) const {
                 int next = find_diff_pt(pts, index, n, 1);
                 SkASSERT(next != index);
                 cross = cross_prod(pts[prev], pts[index], pts[next]);
-                // if we get a zero and the points are horizontal, then we look at the spread in 
+                // if we get a zero and the points are horizontal, then we look at the spread in
                 // x-direction. We really should continue to walk away from the degeneracy until
                 // there is a divergence.
                 if (0 == cross && pts[prev].fY == pts[index].fY && pts[next].fY == pts[index].fY) {
index add66a2..627ed18 100644 (file)
@@ -1474,7 +1474,7 @@ static void check_for_circle(skiatest::Reporter* reporter,
     SkRect rect;
     REPORTER_ASSERT(reporter, path.isOval(&rect) == expectedCircle);
     REPORTER_ASSERT(reporter, path.cheapIsDirection(expectedDir));
-   
+
     if (expectedCircle) {
         REPORTER_ASSERT(reporter, rect.height() == rect.width());
     }