Index: tests/PathOpsSkpClipTest.cpp |
diff --git a/tests/PathOpsSkpClipTest.cpp b/tests/PathOpsSkpClipTest.cpp |
index ad0a95f22b91f55895d554a70ce989d57d26169a..99a5030b56e091525da25c689a092a29544600f3 100755 |
--- a/tests/PathOpsSkpClipTest.cpp |
+++ b/tests/PathOpsSkpClipTest.cpp |
@@ -253,7 +253,7 @@ struct TestRunner { |
class TestRunnable : public SkRunnable { |
public: |
- virtual void run() SK_OVERRIDE { |
+ void run() SK_OVERRIDE { |
SkGraphics::SetTLSFontCacheLimit(1 * 1024 * 1024); |
(*fTestFun)(&fState); |
} |
@@ -819,10 +819,10 @@ typedef SkTRegistry<Test*(*)(void*)> TestRegistry; |
public: \ |
static Test* Factory(void*) { return SkNEW(name##Class); } \ |
protected: \ |
- virtual void onGetName(SkString* name) SK_OVERRIDE { \ |
+ void onGetName(SkString* name) SK_OVERRIDE { \ |
name->set(#name); \ |
} \ |
- virtual void onRun() SK_OVERRIDE { test_##name(); } \ |
+ void onRun() SK_OVERRIDE { test_##name(); } \ |
}; \ |
static TestRegistry gReg_##name##Class(name##Class::Factory); \ |
static void test_##name() |