| Index: gm/stlouisarch.cpp
|
| diff --git a/gm/stlouisarch.cpp b/gm/stlouisarch.cpp
|
| index 06f607803a8dc8fa5fd4a488cec0a51376f9e86e..176fb4b6196a72bc21737a7c665d95e2986eb99b 100644
|
| --- a/gm/stlouisarch.cpp
|
| +++ b/gm/stlouisarch.cpp
|
| @@ -14,13 +14,13 @@ namespace skiagm {
|
| // this GM tests hairlines which fill nearly the entire render target
|
| class StLouisArchGM : public GM {
|
| protected:
|
| - SkString onShortName() SK_OVERRIDE {
|
| + SkString onShortName() override {
|
| return SkString("stlouisarch");
|
| }
|
|
|
| - SkISize onISize() SK_OVERRIDE { return SkISize::Make((int)kWidth, (int)kHeight); }
|
| + SkISize onISize() override { return SkISize::Make((int)kWidth, (int)kHeight); }
|
|
|
| - void onOnceBeforeDraw() SK_OVERRIDE {
|
| + void onOnceBeforeDraw() override {
|
| {
|
| SkPath* bigQuad = &fPaths.push_back();
|
| bigQuad->moveTo(0, 0);
|
| @@ -66,7 +66,7 @@ protected:
|
| }
|
| }
|
|
|
| - void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
| + void onDraw(SkCanvas* canvas) override {
|
| canvas->save();
|
| canvas->scale(1, -1);
|
| canvas->translate(0, -kHeight);
|
|
|