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

gm/aaclip.cpp
gyp/libjpeg.gyp
gyp/pdfviewer.gyp
include/core/SkData.h

index 6ebb88c0dc92cbc347e8385a3e1bc875c84cde0b..b61c1c654e1cfde12eb21581ddd720cd1d78ac3c 100644 (file)
@@ -29,7 +29,7 @@ static void test_conic(SkCanvas* canvas) {
         { 1   , SK_ColorGREEN },
         { 0.5f, SK_ColorBLUE },
     };
-    
+
     for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); ++i) {
         paint.setColor(gRec[i].fColor);
         draw_conic(canvas, gRec[i].fWeight, paint);
index c365941c5933417f429ab6a62daadc1f90437f3b..975831bab773824460e96a4bd1f5d0e27f2e8c89 100644 (file)
@@ -38,7 +38,7 @@
                 # we currently build skia's version of libjpeg-turbo without
                 # SIMD optimizations for simplicity
                 '../third_party/externals/libjpeg/jsimd_none.c',
-              
+
                 '../third_party/externals/libjpeg/jcapimin.c',
                 '../third_party/externals/libjpeg/jcapistd.c',
                 '../third_party/externals/libjpeg/jccoefct.c',
index ab84e7f5d0266239d7bcd8bd6e4a6155c9db285f..fd5eccbcf6698e0fae78162677a6dbb167c9b4bb 100644 (file)
@@ -17,7 +17,7 @@
       'cflags': ['-fexceptions'],
       'cflags_cc': ['-fexceptions'],
       'cflags!': [ '-fno-exceptions' ],
-      'cflags_cc!': [ '-fno-exceptions' ],         
+      'cflags_cc!': [ '-fno-exceptions' ],
       'sources': [
         '../experimental/PdfViewer/pdf_viewer_main.cpp',
       ],
@@ -40,7 +40,7 @@
       'link_settings': {
         'libraries': [
         ],
-      },    
+      },
       'defines': [
         'BUILDING_PODOFO',
       ],
@@ -60,7 +60,7 @@
         ],
       },
     ],
-  ],  
+  ],
 }
 
 # Local Variables:
index eae84b028a6926d7cced0b81e87b13a1727205ff..6f883c884387480a305ede19bf1ff8556e5d1652 100644 (file)
@@ -89,13 +89,13 @@ public:
      *  takes ownership of that allocation, and will handling calling sk_free.
      */
     static SkData* NewFromMalloc(const void* data, size_t length);
-    
+
     /**
      *  Create a new dataref the file with the specified path.
      *  If the file cannot be opened, this returns NULL.
      */
     static SkData* NewFromFileName(const char path[]);
-    
+
     /**
      *  Create a new dataref from a SkFILE.
      *  This does not take ownership of the SkFILE, nor close it.