Index: gm/dashing.cpp |
diff --git a/gm/dashing.cpp b/gm/dashing.cpp |
index ba3ede4fcd7fd672cd2228903e93f7883460c9c3..bd906cbab2708c047045b05876101cdbc5c8bab6 100644 |
--- a/gm/dashing.cpp |
+++ b/gm/dashing.cpp |
@@ -403,9 +403,9 @@ public: |
protected: |
- bool runAsBench() const SK_OVERRIDE { return true; } |
+ bool runAsBench() const override { return true; } |
- SkString onShortName() SK_OVERRIDE { |
+ SkString onShortName() override { |
if (fDoAA) { |
return SkString("dashing5_aa"); |
} else { |
@@ -413,9 +413,9 @@ protected: |
} |
} |
- SkISize onISize() SK_OVERRIDE { return SkISize::Make(400, 200); } |
+ SkISize onISize() override { return SkISize::Make(400, 200); } |
- void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
+ void onDraw(SkCanvas* canvas) override { |
static const int kOn = 4; |
static const int kOff = 4; |
static const int kIntervalLength = kOn + kOff; |