Index: src/core/SkPictureRecorder.cpp |
diff --git a/src/core/SkPictureRecorder.cpp b/src/core/SkPictureRecorder.cpp |
index 1972ad3341678c008dd3fd2d1f4024f31b5edefa..850be275300246763828217d4a4cb589a1935740 100644 |
--- a/src/core/SkPictureRecorder.cpp |
+++ b/src/core/SkPictureRecorder.cpp |
@@ -115,9 +115,9 @@ public: |
{} |
protected: |
- SkRect onGetBounds() SK_OVERRIDE { return fBounds; } |
+ SkRect onGetBounds() override { return fBounds; } |
- void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
+ void onDraw(SkCanvas* canvas) override { |
SkDrawable* const* drawables = NULL; |
int drawableCount = 0; |
if (fDrawableList) { |
@@ -127,7 +127,7 @@ protected: |
SkRecordDraw(*fRecord, canvas, NULL, drawables, drawableCount, fBBH, NULL/*callback*/); |
} |
- SkPicture* onNewPictureSnapshot() SK_OVERRIDE { |
+ SkPicture* onNewPictureSnapshot() override { |
SkPicture::SnapshotArray* pictList = NULL; |
if (fDrawableList) { |
// TODO: should we plumb-down the BBHFactory and recordFlags from our host |