Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/)
This CL is part III of IV (I broke down the 1280 files into 4 CLs).
Review URL: https://codereview.appspot.com/6475053
git-svn-id: http://skia.googlecode.com/svn/trunk@5264 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/samplecode/SampleAvoid.cpp b/samplecode/SampleAvoid.cpp
index 81050a3..b8bac0d 100644
--- a/samplecode/SampleAvoid.cpp
+++ b/samplecode/SampleAvoid.cpp
@@ -37,7 +37,7 @@
SkShader::kMirror_TileMode);
#endif
}
-
+
virtual ~AvoidView() {
fShader->unref();
}
@@ -54,7 +54,7 @@
virtual void onDrawContent(SkCanvas* canvas) {
SkPaint paint;
SkRect r = { 0, 0, SkIntToScalar(W), SkIntToScalar(H) };
-
+
canvas->translate(r.width() / 6, r.height() / 6);
paint.setShader(fShader);
@@ -73,7 +73,7 @@
paint.setShader(NULL);
paint.setColor(SK_ColorMAGENTA);
-
+
SkPaint frameP;
frameP.setStyle(SkPaint::kStroke_Style);
@@ -91,7 +91,7 @@
canvas->drawRect(rr, frameP);
}
}
-
+
private:
typedef SampleView INHERITED;
};