| Index: gm/nested.cpp
|
| diff --git a/gm/nested.cpp b/gm/nested.cpp
|
| index 025bdce441868b439e26ebb32e1d7e154776592a..3dd2c2c27e3e584331d838219639905dadd9e73e 100644
|
| --- a/gm/nested.cpp
|
| +++ b/gm/nested.cpp
|
| @@ -20,7 +20,7 @@ public:
|
|
|
| protected:
|
|
|
| - SkString onShortName() SK_OVERRIDE {
|
| + SkString onShortName() override {
|
| SkString name("nested");
|
| if (fDoAA) {
|
| name.append("_aa");
|
| @@ -30,7 +30,7 @@ protected:
|
| return name;
|
| }
|
|
|
| - SkISize onISize() SK_OVERRIDE {
|
| + SkISize onISize() override {
|
| return SkISize::Make(kImageWidth, kImageHeight);
|
| }
|
|
|
| @@ -60,7 +60,7 @@ protected:
|
| }
|
| }
|
|
|
| - void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
| + void onDraw(SkCanvas* canvas) override {
|
|
|
| SkPaint shapePaint;
|
| shapePaint.setColor(SK_ColorBLACK);
|
|
|