| Index: include/utils/SkNWayCanvas.h
|
| diff --git a/include/utils/SkNWayCanvas.h b/include/utils/SkNWayCanvas.h
|
| index 84f4b4a177288baf09a918fceb8bedb58220f01e..69ad7135475139f0ada1e3681a45217af776eda2 100644
|
| --- a/include/utils/SkNWayCanvas.h
|
| +++ b/include/utils/SkNWayCanvas.h
|
| @@ -23,10 +23,6 @@ public:
|
| ///////////////////////////////////////////////////////////////////////////
|
| // These are forwarded to the N canvases we're referencing
|
|
|
| - virtual int save(SaveFlags) SK_OVERRIDE;
|
| - virtual int saveLayer(const SkRect* bounds, const SkPaint*,
|
| - 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;
|
| @@ -81,6 +77,10 @@ public:
|
| protected:
|
| SkTDArray<SkCanvas*> fList;
|
|
|
| + 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 onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
|
|
|