Index: gm/shaderbounds.cpp |
diff --git a/gm/shaderbounds.cpp b/gm/shaderbounds.cpp |
index a7de479c1a6e46c7fea173c19c14e8b9bb6c035d..e86ab054310262b814901328b59f58536f9283e2 100644 |
--- a/gm/shaderbounds.cpp |
+++ b/gm/shaderbounds.cpp |
@@ -35,13 +35,13 @@ public: |
protected: |
- SkString onShortName() SK_OVERRIDE { |
+ SkString onShortName() override { |
return fName; |
} |
- SkISize onISize() SK_OVERRIDE { return SkISize::Make(320, 240); } |
+ SkISize onISize() override { return SkISize::Make(320, 240); } |
- SkMatrix onGetInitialTransform() const SK_OVERRIDE { |
+ SkMatrix onGetInitialTransform() const override { |
SkMatrix result; |
SkScalar scale = 0.8f; |
result.setScale(scale, scale); |
@@ -49,7 +49,7 @@ protected: |
return result; |
} |
- void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
+ void onDraw(SkCanvas* canvas) override { |
// The PDF device has already clipped to the content area, but we |
// do it again here so that the raster and pdf results are consistent. |
canvas->clipRect(SkRect::MakeWH(SkIntToScalar(320), |