diff options
author | mtklein <mtklein@chromium.org> | 2014-11-12 09:38:21 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-12 09:38:21 -0800 |
commit | 88300a555f03df7d1d0d480b870388b42e032657 (patch) | |
tree | 422acf9b232c123e619eab3d28f30cb33d98b9d0 | |
parent | 82365915476caedc130d0e36012a1ce0c007c4ae (diff) |
Follow up.
BUG=skia:
Review URL: https://codereview.chromium.org/719853002
-rw-r--r-- | tests/BitmapHeapTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/BitmapHeapTest.cpp b/tests/BitmapHeapTest.cpp index d65ebb67ca..f3385644bd 100644 --- a/tests/BitmapHeapTest.cpp +++ b/tests/BitmapHeapTest.cpp @@ -17,8 +17,8 @@ struct SimpleFlatController : public SkFlatController { SimpleFlatController() : SkFlatController() {} - virtual void* allocThrow(size_t bytes) { return sk_malloc_throw(bytes); } - virtual void unalloc(void* ptr) { sk_free(ptr); } + virtual void* allocThrow(size_t bytes) SK_OVERRIDE { return sk_malloc_throw(bytes); } + virtual void unalloc(void* ptr) SK_OVERRIDE { sk_free(ptr); } void setBitmapStorage(SkBitmapHeap* h) { this->setBitmapHeap(h); } }; |