Index: tools/PictureRenderer.cpp |
diff --git a/tools/PictureRenderer.cpp b/tools/PictureRenderer.cpp |
index b3fef3caf578661e4251953fd557bc1efccb1103..0d7e14c794843a8cd65eb59690279db48321e331 100644 |
--- a/tools/PictureRenderer.cpp |
+++ b/tools/PictureRenderer.cpp |
@@ -841,7 +841,7 @@ public: |
GatherRenderer(const GrContext::Options& opts) : INHERITED(opts) { } |
#endif |
- virtual bool render(SkBitmap** out = NULL) SK_OVERRIDE { |
+ bool render(SkBitmap** out = NULL) SK_OVERRIDE { |
SkRect bounds = SkRect::MakeWH(SkIntToScalar(fPicture->cullRect().width()), |
SkIntToScalar(fPicture->cullRect().height())); |
SkData* data = SkPictureUtils::GatherPixelRefs(fPicture, bounds); |
@@ -851,7 +851,7 @@ public: |
} |
private: |
- virtual SkString getConfigNameInternal() SK_OVERRIDE { |
+ SkString getConfigNameInternal() SK_OVERRIDE { |
return SkString("gather_pixelrefs"); |
} |