aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkPathEffect.cpp
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-03-03 21:57:41 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-04 14:02:30 +0000
commit7067fc6224833941380729857ad865547bc88430 (patch)
treedc8b148fdbb2cb95f738a8b4050c6e31e942521e /src/core/SkPathEffect.cpp
parent32342f032e1dfd133040324f851f0365f9d4cb51 (diff)
move some of patheffect internals into private
BUG=skia: Change-Id: I00da9d38f16fb20f31e025dd817c5d430466a1d0 Reviewed-on: https://skia-review.googlesource.com/9236 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.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/SkPathEffect.cpp b/src/core/SkPathEffect.cpp
index 6f953c5934..eb70a4d47a 100644
--- a/src/core/SkPathEffect.cpp
+++ b/src/core/SkPathEffect.cpp
@@ -27,8 +27,6 @@ SkPathEffect::DashType SkPathEffect::asADash(DashInfo* info) const {
///////////////////////////////////////////////////////////////////////////////
-#ifndef SK_SUPPORT_LEGACY_PATHEFFECT_SUBCLASSES
-
/** \class SkPairPathEffect
Common baseclass for Compose and Sum. This subclass manages two pathEffects,
@@ -140,7 +138,6 @@ private:
typedef SkPairPathEffect INHERITED;
};
-#endif
SkPairPathEffect::SkPairPathEffect(sk_sp<SkPathEffect> pe0, sk_sp<SkPathEffect> pe1)
: fPE0(std::move(pe0)), fPE1(std::move(pe1))