Index: Source/platform/graphics/DiscardablePixelRef.h |
diff --git a/Source/platform/graphics/DiscardablePixelRef.h b/Source/platform/graphics/DiscardablePixelRef.h |
index 5e535576d133e20d2bd83440fcf1bcf62d729f10..658301ab855ef40b9453485bc9b43e0468d98d54 100644 |
--- a/Source/platform/graphics/DiscardablePixelRef.h |
+++ b/Source/platform/graphics/DiscardablePixelRef.h |
@@ -41,7 +41,7 @@ class PLATFORM_EXPORT DiscardablePixelRefAllocator : public SkBitmap::Allocator |
// SkBitmap::Allocator implementation. The discardable memory allocated |
// after this call is locked and will not be purged until next |
// onUnlockPixels(). |
- virtual bool allocPixelRef(SkBitmap*, SkColorTable*); |
+ virtual bool allocPixelRef(SkBitmap*, SkColorTable*) OVERRIDE; |
}; |
// PixelRef object whose memory can be discarded when pixels are unlocked. |
@@ -57,8 +57,8 @@ public: |
protected: |
// SkPixelRef implementation. |
- virtual void* onLockPixels(SkColorTable**); |
- virtual void onUnlockPixels(); |
+ virtual void* onLockPixels(SkColorTable**) OVERRIDE; |
+ virtual void onUnlockPixels() OVERRIDE; |
private: |
void* m_lockedMemory; |