Index: tests/CanvasTest.cpp |
diff --git a/tests/CanvasTest.cpp b/tests/CanvasTest.cpp |
index 23d49834c23a2c27e82d60087e713bc0dd908688..d709a935a661a509ae70de86ad4072a0ddfb9276 100644 |
--- a/tests/CanvasTest.cpp |
+++ b/tests/CanvasTest.cpp |
@@ -190,13 +190,13 @@ class Canvas2CanvasClipVisitor : public SkCanvas::ClipVisitor { |
public: |
Canvas2CanvasClipVisitor(SkCanvas* target) : fTarget(target) {} |
- void clipRect(const SkRect& r, SkRegion::Op op, bool aa) SK_OVERRIDE { |
+ void clipRect(const SkRect& r, SkRegion::Op op, bool aa) override { |
fTarget->clipRect(r, op, aa); |
} |
- void clipRRect(const SkRRect& r, SkRegion::Op op, bool aa) SK_OVERRIDE { |
+ void clipRRect(const SkRRect& r, SkRegion::Op op, bool aa) override { |
fTarget->clipRRect(r, op, aa); |
} |
- void clipPath(const SkPath& p, SkRegion::Op op, bool aa) SK_OVERRIDE { |
+ void clipPath(const SkPath& p, SkRegion::Op op, bool aa) override { |
fTarget->clipPath(p, op, aa); |
} |