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/SampleTests.cpp b/samplecode/SampleTests.cpp
index 5542bf6..ea317e1 100644
--- a/samplecode/SampleTests.cpp
+++ b/samplecode/SampleTests.cpp
@@ -12,7 +12,7 @@
#include "test.h"
namespace skiatest {
-
+
class MyReporter : public Reporter {
protected:
virtual void onStart(Test* test) {}
@@ -28,11 +28,11 @@
r->ref();
fReg = TestRegistry::Head();
}
-
+
~Iter() {
fReporter->unref();
}
-
+
Test* next() {
if (fReg) {
TestRegistry::Factory fact = fReg->factory();
@@ -43,7 +43,7 @@
}
return NULL;
}
-
+
static int Count() {
const TestRegistry* reg = TestRegistry::Head();
int count = 0;
@@ -53,7 +53,7 @@
}
return count;
}
-
+
private:
Reporter* fReporter;
const TestRegistry* fReg;
@@ -62,7 +62,7 @@
class TestsView : public SkView {
public:
- TestsView() {}
+ TestsView() {}
protected:
// overrides from SkEventSink
@@ -73,36 +73,36 @@
}
return this->INHERITED::onQuery(evt);
}
-
+
void drawBG(SkCanvas* canvas) {
canvas->drawColor(SK_ColorWHITE);
}
-
+
virtual void onDraw(SkCanvas* canvas) {
this->drawBG(canvas);
skiatest::MyReporter reporter;
skiatest::Iter iter(&reporter);
skiatest::Test* test;
-
+
while ((test = iter.next()) != NULL) {
test->run();
SkDELETE(test);
}
}
-
+
virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y) {
this->inval(NULL);
-
+
return this->INHERITED::onFindClickHandler(x, y);
}
-
+
virtual bool onClick(Click* click) {
this->inval(NULL);
return this->INHERITED::onClick(click);
}
- virtual bool handleKey(SkKey key) {
+ virtual bool handleKey(SkKey key) {
this->inval(NULL);
return true;
}