From 9fbee18f691a0afed1e38a851048ce06063505ed Mon Sep 17 00:00:00 2001 From: reed Date: Fri, 18 Mar 2016 10:00:32 -0700 Subject: switch patheffects over to sk_sp BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1813553005 Review URL: https://codereview.chromium.org/1813553005 --- tests/AsADashTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/AsADashTest.cpp') diff --git a/tests/AsADashTest.cpp b/tests/AsADashTest.cpp index fc4efecbb2..2077b66425 100644 --- a/tests/AsADashTest.cpp +++ b/tests/AsADashTest.cpp @@ -12,7 +12,7 @@ #include "SkCornerPathEffect.h" DEF_TEST(AsADashTest_noneDash, reporter) { - SkAutoTUnref pe(SkCornerPathEffect::Create(1.0)); + sk_sp pe(SkCornerPathEffect::Make(1.0)); SkPathEffect::DashInfo info; SkPathEffect::DashType dashType = pe->asADash(&info); @@ -22,7 +22,7 @@ DEF_TEST(AsADashTest_noneDash, reporter) { DEF_TEST(AsADashTest_nullInfo, reporter) { SkScalar inIntervals[] = { 4.0, 2.0, 1.0, 3.0 }; const SkScalar phase = 2.0; - SkAutoTUnref pe(SkDashPathEffect::Create(inIntervals, 4, phase)); + sk_sp pe(SkDashPathEffect::Make(inIntervals, 4, phase)); SkPathEffect::DashType dashType = pe->asADash(nullptr); REPORTER_ASSERT(reporter, SkPathEffect::kDash_DashType == dashType); @@ -33,7 +33,7 @@ DEF_TEST(AsADashTest_usingDash, reporter) { SkScalar totalIntSum = 10.0; const SkScalar phase = 2.0; - SkAutoTUnref pe(SkDashPathEffect::Create(inIntervals, 4, phase)); + sk_sp pe(SkDashPathEffect::Make(inIntervals, 4, phase)); SkPathEffect::DashInfo info; -- cgit v1.2.3