| Index: include/utils/SkNWayCanvas.h
 | 
| diff --git a/include/utils/SkNWayCanvas.h b/include/utils/SkNWayCanvas.h
 | 
| index 56cad84bb602b7bf08eac1e76e68ef190e3c1e12..84f4b4a177288baf09a918fceb8bedb58220f01e 100644
 | 
| --- a/include/utils/SkNWayCanvas.h
 | 
| +++ b/include/utils/SkNWayCanvas.h
 | 
| @@ -23,6 +23,10 @@ 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;
 | 
| @@ -77,10 +81,6 @@ public:
 | 
|  protected:
 | 
|      SkTDArray<SkCanvas*> fList;
 | 
|  
 | 
| -    virtual void onSave(SaveFlags) SK_OVERRIDE;
 | 
| -    virtual bool onSaveLayer(const SkRect*, const SkPaint*, SaveFlags) SK_OVERRIDE;
 | 
| -    virtual void onRestore() SK_OVERRIDE;
 | 
| -
 | 
|      virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE;
 | 
|  
 | 
|      virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
 | 
| 
 |