Index: include/gpu/SkGrPixelRef.h |
diff --git a/include/gpu/SkGrPixelRef.h b/include/gpu/SkGrPixelRef.h |
index 96125ba111169c94875ccba42488a8531654ffb6..4eab59c7a6c38e99773a92d3376d1064cc1930b6 100644 |
--- a/include/gpu/SkGrPixelRef.h |
+++ b/include/gpu/SkGrPixelRef.h |
@@ -25,9 +25,9 @@ public: |
virtual ~SkROLockPixelsPixelRef(); |
protected: |
- virtual bool onNewLockPixels(LockRec*) SK_OVERRIDE; |
- virtual void onUnlockPixels() SK_OVERRIDE; |
- virtual bool onLockPixelsAreWritable() const SK_OVERRIDE; // return false; |
+ bool onNewLockPixels(LockRec*) SK_OVERRIDE; |
+ void onUnlockPixels() SK_OVERRIDE; |
+ bool onLockPixelsAreWritable() const SK_OVERRIDE; // return false; |
private: |
SkBitmap fBitmap; |
@@ -47,11 +47,11 @@ public: |
virtual ~SkGrPixelRef(); |
// override from SkPixelRef |
- virtual GrTexture* getTexture() SK_OVERRIDE; |
+ GrTexture* getTexture() SK_OVERRIDE; |
protected: |
// overrides from SkPixelRef |
- virtual bool onReadPixels(SkBitmap* dst, const SkIRect* subset) SK_OVERRIDE; |
+ bool onReadPixels(SkBitmap* dst, const SkIRect* subset) SK_OVERRIDE; |
virtual SkPixelRef* deepCopy(SkColorType, SkColorProfileType, |
const SkIRect* subset) SK_OVERRIDE; |