| Index: sky/engine/platform/graphics/ProfilingCanvas.cpp
 | 
| diff --git a/sky/engine/platform/graphics/ProfilingCanvas.cpp b/sky/engine/platform/graphics/ProfilingCanvas.cpp
 | 
| index 2940339011e3d71b65c8e96b00db566c83007cc9..728a5c03ea46d7d172a17571cc0026b13a07019c 100644
 | 
| --- a/sky/engine/platform/graphics/ProfilingCanvas.cpp
 | 
| +++ b/sky/engine/platform/graphics/ProfilingCanvas.cpp
 | 
| @@ -118,12 +118,6 @@ void ProfilingCanvas::drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect*
 | 
|      this->SkCanvas::drawBitmapRectToRect(bitmap, src, dst, paint, flags);
 | 
|  }
 | 
|  
 | 
| -void ProfilingCanvas::drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m, const SkPaint* paint)
 | 
| -{
 | 
| -    AutoStamper stamper(this);
 | 
| -    this->SkCanvas::drawBitmapMatrix(bitmap, m, paint);
 | 
| -}
 | 
| -
 | 
|  void ProfilingCanvas::drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst, const SkPaint* paint)
 | 
|  {
 | 
|      AutoStamper stamper(this);
 | 
| @@ -197,18 +191,6 @@ void ProfilingCanvas::onDrawTextOnPath(const void* text, size_t byteLength, cons
 | 
|      this->SkCanvas::onDrawTextOnPath(text, byteLength, path, matrix, paint);
 | 
|  }
 | 
|  
 | 
| -void ProfilingCanvas::onPushCull(const SkRect& cullRect)
 | 
| -{
 | 
| -    AutoStamper stamper(this);
 | 
| -    this->SkCanvas::onPushCull(cullRect);
 | 
| -}
 | 
| -
 | 
| -void ProfilingCanvas::onPopCull()
 | 
| -{
 | 
| -    AutoStamper stamper(this);
 | 
| -    this->SkCanvas::onPopCull();
 | 
| -}
 | 
| -
 | 
|  void ProfilingCanvas::onClipRect(const SkRect& rect, SkRegion::Op op, ClipEdgeStyle edgeStyle)
 | 
|  {
 | 
|      AutoStamper stamper(this);
 | 
| 
 |