| Index: gm/getpostextpath.cpp
|
| diff --git a/gm/getpostextpath.cpp b/gm/getpostextpath.cpp
|
| index db509697440c71df239e8f4123091b619162ac74..2286602aa7b420b43b341af7e8bc25b8c923b90f 100644
|
| --- a/gm/getpostextpath.cpp
|
| +++ b/gm/getpostextpath.cpp
|
| @@ -17,11 +17,11 @@ public:
|
|
|
| protected:
|
|
|
| - SkString onShortName() SK_OVERRIDE {
|
| + SkString onShortName() override {
|
| return SkString("getpostextpath");
|
| }
|
|
|
| - SkISize onISize() SK_OVERRIDE { return SkISize::Make(480, 780); }
|
| + SkISize onISize() override { return SkISize::Make(480, 780); }
|
|
|
| static void strokePath(SkCanvas* canvas, const SkPath& path) {
|
| SkPaint paint;
|
| @@ -31,7 +31,7 @@ protected:
|
| canvas->drawPath(path, paint);
|
| }
|
|
|
| - void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
| + void onDraw(SkCanvas* canvas) override {
|
| // explicitly add spaces, to test a prev. bug
|
| const char* text = "Ham bur ge fons";
|
| int len = SkToInt(strlen(text));
|
|
|