Index: include/effects/SkCornerPathEffect.h |
diff --git a/include/effects/SkCornerPathEffect.h b/include/effects/SkCornerPathEffect.h |
index cf03463530db7bef7ee84a564202a97753715375..13095f0e6c4a46cb46d6db731a2707f967576d0d 100644 |
--- a/include/effects/SkCornerPathEffect.h |
+++ b/include/effects/SkCornerPathEffect.h |
@@ -20,15 +20,7 @@ |
/** radius must be > 0 to have an effect. It specifies the distance from each corner |
that should be "rounded". |
*/ |
- static sk_sp<SkPathEffect> Make(SkScalar radius) { |
- return sk_sp<SkPathEffect>(new SkCornerPathEffect(radius)); |
- } |
- |
-#ifdef SK_SUPPORT_LEGACY_PATHEFFECT_PTR |
- static SkPathEffect* Create(SkScalar radius) { |
- return Make(radius).release(); |
- } |
-#endif |
+ static SkPathEffect* Create(SkScalar radius) { return new SkCornerPathEffect(radius); } |
virtual bool filterPath(SkPath* dst, const SkPath& src, |
SkStrokeRec*, const SkRect*) const override; |