| Index: src/core/SkBBoxRecord.h
|
| diff --git a/src/core/SkBBoxRecord.h b/src/core/SkBBoxRecord.h
|
| index fa8b282247e8ff17cbdcd4fb63ec482dcfb7ea41..e95ece49545305f8b113e21dbc3294017eadf342 100644
|
| --- a/src/core/SkBBoxRecord.h
|
| +++ b/src/core/SkBBoxRecord.h
|
| @@ -31,8 +31,6 @@ public:
|
|
|
| virtual void drawOval(const SkRect& rect, const SkPaint& paint) SK_OVERRIDE;
|
| virtual void drawRRect(const SkRRect& rrect, const SkPaint& paint) SK_OVERRIDE;
|
| - virtual void drawRect(const SkRect& rect, const SkPaint& paint) SK_OVERRIDE;
|
| - virtual void drawPath(const SkPath& path, const SkPaint& paint) SK_OVERRIDE;
|
| virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
|
| const SkPaint& paint) SK_OVERRIDE;
|
| virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
|
| @@ -65,6 +63,10 @@ public:
|
| const SkPaint& paint) SK_OVERRIDE;
|
| virtual void drawPicture(SkPicture& picture) SK_OVERRIDE;
|
|
|
| +protected:
|
| + virtual void onDrawRect(const SkRect& rect, const SkPaint& paint) SK_OVERRIDE;
|
| + virtual void onDrawPath(const SkPath& path, const SkPaint& paint) SK_OVERRIDE;
|
| +
|
| private:
|
| /**
|
| * Takes a bounding box in current canvas view space, accounts for stroking and effects, and
|
|
|