| Index: bench/FSRectBench.cpp
|
| diff --git a/bench/FSRectBench.cpp b/bench/FSRectBench.cpp
|
| index 3c5304294d1830f757205a9a64572e933635240c..af99015a291bb4de5d55259eb0b6787ab766547b 100644
|
| --- a/bench/FSRectBench.cpp
|
| +++ b/bench/FSRectBench.cpp
|
| @@ -20,9 +20,9 @@ public:
|
| FSRectBench() : fInit(false) { }
|
|
|
| protected:
|
| - virtual const char* onGetName() SK_OVERRIDE { return "fullscreen_rects"; }
|
| + const char* onGetName() SK_OVERRIDE { return "fullscreen_rects"; }
|
|
|
| - virtual void onPreDraw() SK_OVERRIDE {
|
| + void onPreDraw() SK_OVERRIDE {
|
| if (!fInit) {
|
| SkRandom rand;
|
| static const SkScalar kMinOffset = 0;
|
| @@ -39,7 +39,7 @@ protected:
|
| }
|
| }
|
|
|
| - virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE {
|
| + void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE {
|
| SkPaint paint;
|
| for (int i = 0; i < loops; ++i) {
|
| paint.setColor(fColors[i % N]);
|
|
|