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/DebuggerViews.h b/experimental/Debugger/DebuggerViews.h
index f025c79..c63283f 100644
--- a/experimental/Debugger/DebuggerViews.h
+++ b/experimental/Debugger/DebuggerViews.h
@@ -37,7 +37,7 @@
 class DebuggerStateView : public SkView {
 public:
     DebuggerStateView();
-    
+
 protected:
     virtual bool onEvent(const SkEvent& evt);
     virtual void onDraw(SkCanvas* canvas);
@@ -65,7 +65,7 @@
     void highlight(int index);
     int  selectHighlight(int ypos);
     void toggleCentered();
-    
+
 protected:
     virtual bool onEvent(const SkEvent& evt);
     virtual void onSizeChange();
@@ -87,7 +87,7 @@
 
 static void* PaintProc(void* ptr, bool doRef) {
     SkPaint* p = (SkPaint*) ptr;
-    
+
     if (doRef) {
         return new SkPaint(*p);
     }
@@ -95,6 +95,6 @@
         delete p;
         return NULL;
     }
-    
+
 }