| Index: tests/ImageCacheTest.cpp
|
| diff --git a/tests/ImageCacheTest.cpp b/tests/ImageCacheTest.cpp
|
| index 45dee92a2f02ba4b37436a80732564fb55be7938..2244bb0a53f66334173c9c9fda04f7f11d034f2f 100644
|
| --- a/tests/ImageCacheTest.cpp
|
| +++ b/tests/ImageCacheTest.cpp
|
| @@ -24,8 +24,8 @@ struct TestingRec : public SkResourceCache::Rec {
|
| TestingKey fKey;
|
| intptr_t fValue;
|
|
|
| - 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& baseRec, void* context) {
|
| const TestingRec& rec = static_cast<const TestingRec&>(baseRec);
|
|
|