Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / graphics / ProfilingCanvas.cpp
index 1741fa7..fed0340 100644 (file)
@@ -203,6 +203,12 @@ void ProfilingCanvas::onDrawTextOnPath(const void* text, size_t byteLength, cons
     this->SkCanvas::onDrawTextOnPath(text, byteLength, path, matrix, paint);
 }
 
+void ProfilingCanvas::onDrawTextBlob(const SkTextBlob *blob, SkScalar x, SkScalar y, const SkPaint& paint)
+{
+    AutoStamper stamper(this);
+    this->SkCanvas::onDrawTextBlob(blob, x, y, paint);
+}
+
 void ProfilingCanvas::onPushCull(const SkRect& cullRect)
 {
     AutoStamper stamper(this);