Index: bench/ImageCacheBench.cpp |
diff --git a/bench/ImageCacheBench.cpp b/bench/ImageCacheBench.cpp |
index 75adc50dcb0f88330f03543007a012b49eba35e6..4a068b03abb064a8a76cca877c7bd8955a7bde5a 100644 |
--- a/bench/ImageCacheBench.cpp |
+++ b/bench/ImageCacheBench.cpp |
@@ -24,8 +24,8 @@ struct TestRec : public SkResourceCache::Rec { |
TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {} |
- const Key& getKey() const SK_OVERRIDE { return fKey; } |
- size_t bytesUsed() const SK_OVERRIDE { return sizeof(fKey) + sizeof(fValue); } |
+ const Key& getKey() const override { return fKey; } |
+ size_t bytesUsed() const override { return sizeof(fKey) + sizeof(fValue); } |
static bool Visitor(const SkResourceCache::Rec&, void*) { |
return true; |
@@ -49,11 +49,11 @@ public: |
} |
protected: |
- const char* onGetName() SK_OVERRIDE { |
+ const char* onGetName() override { |
return "imagecache"; |
} |
- void onDraw(const int loops, SkCanvas*) SK_OVERRIDE { |
+ void onDraw(const int loops, SkCanvas*) override { |
if (fCache.getTotalBytesUsed() == 0) { |
this->populateCache(); |
} |