diff options
author | Liang Qi <liang.qi@qt.io> | 2016-05-27 09:58:08 +0200 |
---|---|---|
committer | Liang Qi <liang.qi@qt.io> | 2016-05-27 09:58:33 +0200 |
commit | 01fa9be55572ddb3f69befc68475ed09241eabdf (patch) | |
tree | 03e177b36123aaf32b287eda215014e08b3d269b /Source/WebCore/svg/SVGPathElement.h | |
parent | 2e8517924b70a778463e463873eb3d8d0b623eed (diff) | |
parent | a750b262b856178eee47d546944bd095662dccf7 (diff) | |
download | qtwebkit-01fa9be55572ddb3f69befc68475ed09241eabdf.tar.gz |
Merge remote-tracking branch 'origin/5.6.1' into 5.7.05.7.0
Change-Id: Id8fd457ab1eb501f8f5622cb5f7d88c352e3758f
Diffstat (limited to 'Source/WebCore/svg/SVGPathElement.h')
-rw-r--r-- | Source/WebCore/svg/SVGPathElement.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/WebCore/svg/SVGPathElement.h b/Source/WebCore/svg/SVGPathElement.h index c81ead198..e9db8a56e 100644 --- a/Source/WebCore/svg/SVGPathElement.h +++ b/Source/WebCore/svg/SVGPathElement.h @@ -83,10 +83,10 @@ public: PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> createSVGPathSegCurvetoQuadraticSmoothRel(float x, float y, SVGPathSegRole role = PathSegUndefinedRole); // Used in the bindings only. - SVGPathSegListPropertyTearOff* pathSegList(); - SVGPathSegListPropertyTearOff* animatedPathSegList(); - SVGPathSegListPropertyTearOff* normalizedPathSegList(); - SVGPathSegListPropertyTearOff* animatedNormalizedPathSegList(); + RefPtr<SVGPathSegListPropertyTearOff> pathSegList(); + RefPtr<SVGPathSegListPropertyTearOff> animatedPathSegList(); + RefPtr<SVGPathSegListPropertyTearOff> normalizedPathSegList(); + RefPtr<SVGPathSegListPropertyTearOff> animatedNormalizedPathSegList(); SVGPathByteStream* pathByteStream() const; @@ -98,7 +98,9 @@ public: bool isAnimValObserved() const { return m_isAnimValObserved; } -private: + void animatedPropertyWillBeDeleted(); + + private: SVGPathElement(const QualifiedName&, Document*); virtual bool isValid() const { return SVGTests::isValid(); } |