| Index: include/utils/SkPictureUtils.h
|
| diff --git a/include/utils/SkPictureUtils.h b/include/utils/SkPictureUtils.h
|
| index 9bdf6f69a143041a0d7d8d1d18751b9600ae9a04..80d8b81e1f9982c605013e372b5c3281d0b01dbd 100644
|
| --- a/include/utils/SkPictureUtils.h
|
| +++ b/include/utils/SkPictureUtils.h
|
| @@ -47,14 +47,14 @@ public:
|
| // and rects.
|
| class SkPixelRefsAndRectsList : public SkPixelRefContainer {
|
| public:
|
| - virtual void add(SkPixelRef* pr, const SkRect& rect) SK_OVERRIDE {
|
| + void add(SkPixelRef* pr, const SkRect& rect) SK_OVERRIDE {
|
| PixelRefAndRect *dst = fArray.append();
|
|
|
| dst->fPixelRef = pr;
|
| dst->fRect = rect;
|
| }
|
|
|
| - virtual void query(const SkRect& queryRect, SkTDArray<SkPixelRef*> *result) SK_OVERRIDE {
|
| + void query(const SkRect& queryRect, SkTDArray<SkPixelRef*> *result) SK_OVERRIDE {
|
| for (int i = 0; i < fArray.count(); ++i) {
|
| if (SkRect::Intersects(fArray[i].fRect, queryRect)) {
|
| *result->append() = fArray[i].fPixelRef;
|
|
|