| Index: src/core/SkRTree.h
|
| diff --git a/src/core/SkRTree.h b/src/core/SkRTree.h
|
| index 4021c0980bd02d2982ada114a630bab3bfaaab3f..7934324b5d69b8956f17a5bc0caa0b59da59d91f 100644
|
| --- a/src/core/SkRTree.h
|
| +++ b/src/core/SkRTree.h
|
| @@ -41,9 +41,9 @@ public:
|
| explicit SkRTree(SkScalar aspectRatio = 1);
|
| virtual ~SkRTree() {}
|
|
|
| - virtual void insert(SkAutoTMalloc<SkRect>* boundsArray, int N) SK_OVERRIDE;
|
| - virtual void search(const SkRect& query, SkTDArray<unsigned>* results) const SK_OVERRIDE;
|
| - virtual size_t bytesUsed() const SK_OVERRIDE;
|
| + void insert(SkAutoTMalloc<SkRect>* boundsArray, int N) SK_OVERRIDE;
|
| + void search(const SkRect& query, SkTDArray<unsigned>* results) const SK_OVERRIDE;
|
| + size_t bytesUsed() const SK_OVERRIDE;
|
|
|
| // Methods and constants below here are only public for tests.
|
|
|
|
|