Index: include/effects/Sk2DPathEffect.h |
diff --git a/include/effects/Sk2DPathEffect.h b/include/effects/Sk2DPathEffect.h |
index 823a6ad9d87b25a59255d7d69ab39c70cc26d049..73da83c4b960dd84facb5ca1c7073ba33e034177 100644 |
--- a/include/effects/Sk2DPathEffect.h |
+++ b/include/effects/Sk2DPathEffect.h |
@@ -55,8 +55,8 @@ |
class SK_API SkLine2DPathEffect : public Sk2DPathEffect { |
public: |
- static sk_sp<SkPathEffect> Make(SkScalar width, const SkMatrix& matrix) { |
- return sk_sp<SkPathEffect>(new SkLine2DPathEffect(width, matrix)); |
+ static SkPathEffect* Create(SkScalar width, const SkMatrix& matrix) { |
+ return new SkLine2DPathEffect(width, matrix); |
} |
virtual bool filterPath(SkPath* dst, const SkPath& src, |
@@ -84,8 +84,8 @@ |
* Stamp the specified path to fill the shape, using the matrix to define |
* the latice. |
*/ |
- static sk_sp<SkPathEffect> Make(const SkMatrix& matrix, const SkPath& path) { |
- return sk_sp<SkPathEffect>(new SkPath2DPathEffect(matrix, path)); |
+ static SkPathEffect* Create(const SkMatrix& matrix, const SkPath& path) { |
+ return new SkPath2DPathEffect(matrix, path); |
} |
SK_TO_STRING_OVERRIDE() |