From 57c2b8b16ab958214ecad2c4bd4aad75f7d255c6 Mon Sep 17 00:00:00 2001 From: Mike Reed Date: Sun, 31 Dec 2017 15:23:54 -0500 Subject: remove unused declarations Bug: skia: Change-Id: If8ca5e3d649dab3cf8b2bdb1cf072ff23cea9465 Reviewed-on: https://skia-review.googlesource.com/90026 Reviewed-by: Mike Reed Commit-Queue: Mike Reed --- src/core/SkPathEffect.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/SkPathEffect.cpp') diff --git a/src/core/SkPathEffect.cpp b/src/core/SkPathEffect.cpp index 3eee6656dd..8991713171 100644 --- a/src/core/SkPathEffect.cpp +++ b/src/core/SkPathEffect.cpp @@ -33,7 +33,7 @@ SkPathEffect::DashType SkPathEffect::asADash(DashInfo* info) const { including flattening them. It does nothing in filterPath, and is only useful for managing the lifetimes of its two arguments. */ -class SK_API SkPairPathEffect : public SkPathEffect { +class SkPairPathEffect : public SkPathEffect { protected: SkPairPathEffect(sk_sp pe0, sk_sp pe1) : fPE0(std::move(pe0)), fPE1(std::move(pe1)) @@ -77,7 +77,7 @@ void SkPairPathEffect::toString(SkString* str) const { This subclass of SkPathEffect composes its two arguments, to create a compound pathEffect. */ -class SK_API SkComposePathEffect : public SkPairPathEffect { +class SkComposePathEffect : public SkPairPathEffect { public: /** Construct a pathEffect whose effect is to apply first the inner pathEffect and the the outer pathEffect (e.g. outer(inner(path))) @@ -147,7 +147,7 @@ void SkComposePathEffect::toString(SkString* str) const { This subclass of SkPathEffect applies two pathEffects, one after the other. Its filterPath() returns true if either of the effects succeeded. */ -class SK_API SkSumPathEffect : public SkPairPathEffect { +class SkSumPathEffect : public SkPairPathEffect { public: /** Construct a pathEffect whose effect is to apply two effects, in sequence. (e.g. first(path) + second(path)) -- cgit v1.2.3