Index: include/utils/SkDumpCanvas.h |
diff --git a/include/utils/SkDumpCanvas.h b/include/utils/SkDumpCanvas.h |
index 5e3249cbee5ceef1ec1c318e5fd2ad85ea595d8e..b08b2d0dda5a149226dc14e5bfea89bfd699b2d9 100644 |
--- a/include/utils/SkDumpCanvas.h |
+++ b/include/utils/SkDumpCanvas.h |
@@ -74,11 +74,6 @@ public: |
int getNestLevel() const { return fNestLevel; } |
- virtual int save(SaveFlags) SK_OVERRIDE; |
- virtual int saveLayer(const SkRect* bounds, const SkPaint* paint, |
- SaveFlags) SK_OVERRIDE; |
- virtual void restore() SK_OVERRIDE; |
- |
virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE; |
virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE; |
virtual bool rotate(SkScalar degrees) SK_OVERRIDE; |
@@ -124,6 +119,10 @@ public: |
virtual void endCommentGroup() SK_OVERRIDE; |
protected: |
+ virtual void willSave(SaveFlags) SK_OVERRIDE; |
+ virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveFlags) SK_OVERRIDE; |
+ virtual void willRestore() SK_OVERRIDE; |
+ |
virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE; |
virtual void onPushCull(const SkRect& cullRect) SK_OVERRIDE; |
virtual void onPopCull() SK_OVERRIDE; |