aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkPathEffect.cpp
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-12-31 15:23:54 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-03 00:13:49 +0000
commit57c2b8b16ab958214ecad2c4bd4aad75f7d255c6 (patch)
tree84c2cb1b622843ec6cf36f3e0a8e30cad8d13df9 /src/core/SkPathEffect.cpp
parente8bb6da08dc61832062e7a0e86b9ebd44953301c (diff)
remove unused declarations
Bug: skia: Change-Id: If8ca5e3d649dab3cf8b2bdb1cf072ff23cea9465 Reviewed-on: https://skia-review.googlesource.com/90026 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'src/core/SkPathEffect.cpp')
-rw-r--r--src/core/SkPathEffect.cpp6
1 files changed, 3 insertions, 3 deletions
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<SkPathEffect> pe0, sk_sp<SkPathEffect> 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))