Index: src/core/SkBitmapHeap.h |
diff --git a/src/core/SkBitmapHeap.h b/src/core/SkBitmapHeap.h |
index 95e272418ae26d0de5ce58e59271c59409565ba2..fe171ffbbfd6797e02b541f3b1d2bdb390abd67c 100644 |
--- a/src/core/SkBitmapHeap.h |
+++ b/src/core/SkBitmapHeap.h |
@@ -117,7 +117,7 @@ public: |
* |
* @return The bitmap located at that slot or NULL if external storage is being used. |
*/ |
- SkBitmap* getBitmap(int32_t slot) const SK_OVERRIDE { |
+ SkBitmap* getBitmap(int32_t slot) const override { |
SkASSERT(fExternalStorage == NULL); |
SkBitmapHeapEntry* entry = getEntry(slot); |
if (entry) { |
@@ -131,7 +131,7 @@ public: |
* |
* @return The bitmap located at that slot or NULL if external storage is being used. |
*/ |
- void releaseRef(int32_t slot) SK_OVERRIDE { |
+ void releaseRef(int32_t slot) override { |
SkASSERT(fExternalStorage == NULL); |
if (fOwnerCount != IGNORE_OWNERS) { |
SkBitmapHeapEntry* entry = getEntry(slot); |