Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Unified Diff: tests/BitmapHeapTest.cpp

Issue 719853002: Follow up. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/BitmapHeapTest.cpp
diff --git a/tests/BitmapHeapTest.cpp b/tests/BitmapHeapTest.cpp
index d65ebb67ca8f85648fe81ff8db730354436f3a8c..f3385644bd132a33ff24c2d1571016711304fac6 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); }
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698