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

include/utils/SkRandom.h
src/core/SkBitmap.cpp
tests/BitmapTest.cpp

index 9191ec3..dc9e681 100644 (file)
@@ -294,7 +294,7 @@ public:
         int64_t hi = this->nextS();
         return (hi << 32) | this->nextU();
     }
-    
+
 #ifdef SK_SUPPORT_LEGACY_SK64
     SK_ATTR_DEPRECATED("use next64()")
     void next64(Sk64* a) {
index 502d7db..ee741c3 100644 (file)
@@ -235,7 +235,7 @@ size_t SkBitmap::ComputeSafeSize(Config config,
                                  size_t rowBytes) {
     int64_t safeSize = ComputeSafeSize64(config, width, height, rowBytes);
     int32_t safeSize32 = (int32_t)safeSize;
-    
+
     if (safeSize32 != safeSize) {
         safeSize32 = 0;
     }
index aaa297e..ef637f4 100644 (file)
@@ -16,7 +16,7 @@ static void test_bigwidth(skiatest::Reporter* reporter) {
 
     REPORTER_ASSERT(reporter, bm.setConfig(SkBitmap::kA8_Config, width, 1));
     REPORTER_ASSERT(reporter, bm.setConfig(SkBitmap::kRGB_565_Config, width, 1));
-    
+
     // for a 4-byte config, this width will compute a rowbytes of 0x80000000,
     // which does not fit in a int32_t. setConfig should detect this, and fail.
 
@@ -43,6 +43,6 @@ DEF_TEST(Bitmap, reporter) {
             REPORTER_ASSERT(reporter, SkToBool(width & height) != bm.empty());
         }
     }
-    
+
     test_bigwidth(reporter);
 }