Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/)

This CL is part II of IV (I broke down the 1280 files into 4 CLs).
Review URL: https://codereview.appspot.com/6474054

git-svn-id: http://skia.googlecode.com/svn/trunk@5263 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Debugger/SkDebugDumper.cpp b/experimental/Debugger/SkDebugDumper.cpp
index 69b1896..cfda184 100644
--- a/experimental/Debugger/SkDebugDumper.cpp
+++ b/experimental/Debugger/SkDebugDumper.cpp
@@ -16,7 +16,7 @@
 #include "SkMaskFilter.h"
 #include "DebuggerViews.h"
 
-SkDebugDumper::SkDebugDumper(SkEventSinkID cID, SkEventSinkID clID, 
+SkDebugDumper::SkDebugDumper(SkEventSinkID cID, SkEventSinkID clID,
                              SkEventSinkID ipID) {
     fContentID = cID;
     fCommandsID = clID;
@@ -43,17 +43,17 @@
     SkString str;
     SkMatrix m = canvas->getTotalMatrix();
     str.append("Matrix:");
-    str.appendf("Translate (%0.4g, %0.4g) ", 
-                 SkScalarToFloat(m.get(SkMatrix::kMTransX)), 
+    str.appendf("Translate (%0.4g, %0.4g) ",
+                 SkScalarToFloat(m.get(SkMatrix::kMTransX)),
                  SkScalarToFloat(m.get(SkMatrix::kMTransY)));
-    str.appendf("Scale (%0.4g, %0.4g) ", 
-                 SkScalarToFloat(m.get(SkMatrix::kMScaleX)), 
+    str.appendf("Scale (%0.4g, %0.4g) ",
+                 SkScalarToFloat(m.get(SkMatrix::kMScaleX)),
                  SkScalarToFloat(m.get(SkMatrix::kMScaleY)));
-    str.appendf("Skew (%0.4g, %0.4g) ", 
-                 SkScalarToFloat(m.get(SkMatrix::kMSkewX)), 
+    str.appendf("Skew (%0.4g, %0.4g) ",
+                 SkScalarToFloat(m.get(SkMatrix::kMSkewX)),
                  SkScalarToFloat(m.get(SkMatrix::kMSkewY)));
-    str.appendf("Perspective (%0.4g, %0.4g, %0.4g) ", 
-                 SkScalarToFloat(SkPerspToScalar(m.get(SkMatrix::kMPersp0))), 
+    str.appendf("Perspective (%0.4g, %0.4g, %0.4g) ",
+                 SkScalarToFloat(SkPerspToScalar(m.get(SkMatrix::kMPersp0))),
                  SkScalarToFloat(SkPerspToScalar(m.get(SkMatrix::kMPersp1))),
                  SkScalarToFloat(SkPerspToScalar(m.get(SkMatrix::kMPersp2))));
     return str;
@@ -67,7 +67,7 @@
     if (canvas->getTotalClip().getBoundaryPath(&p)) {
         SkPoint pts[maxPts];
         int numPts = p.getPoints(pts, maxPts);
-        
+
         str.append("Clip: [ ");
         for (int i = 0; i < numPts; ++i) {
             str.appendf("(%0.4g, %0.4g)", pts[i].x(), pts[i].y());
@@ -99,7 +99,7 @@
 static SkString dumpPaint(SkDumpCanvas* canvas, const SkPaint* p,
                       SkDumpCanvas::Verb verb) {
     SkString str;
-    str.appendf("Color: #%08X\n", p->getColor()); 
+    str.appendf("Color: #%08X\n", p->getColor());
     str.appendf("Flags: %s\n", gPaintFlags[p->getFlags()]);
     appendFlattenable(&str, p->getShader(), "shader");
     appendFlattenable(&str, p->getXfermode(), "xfermode");
@@ -107,26 +107,26 @@
     appendFlattenable(&str, p->getMaskFilter(), "maskFilter");
     appendFlattenable(&str, p->getPathEffect(), "pathEffect");
     appendFlattenable(&str, p->getColorFilter(), "filter");
-    
+
     if (SkDumpCanvas::kDrawText_Verb == verb) {
         str.appendf("Text Size:%0.4g\n", SkScalarToFloat(p->getTextSize()));
         appendPtr(&str, p->getTypeface(), "typeface");
     }
-    
+
     return str;
 }
 
 void SkDebugDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb,
-                          const char str[], const SkPaint* p) {      
+                          const char str[], const SkPaint* p) {
     if (!fDisabled) {
         SkString msg, tab;
-        
+
         const int level = canvas->getNestLevel() + canvas->getSaveCount() - 1;
         SkASSERT(level >= 0);
         for (int i = 0; i < level; i++) {
             tab.append("| ");
         }
-        
+
         msg.appendf("%03d: %s%s\n", fCount, tab.c_str(), str);
         ++fCount;
         if (!fInit) {