summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/properties/SVGAnimatedPathSegListPropertyTearOff.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/properties/SVGAnimatedPathSegListPropertyTearOff.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/properties/SVGAnimatedPathSegListPropertyTearOff.h118
1 files changed, 0 insertions, 118 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/properties/SVGAnimatedPathSegListPropertyTearOff.h b/chromium/third_party/WebKit/Source/core/svg/properties/SVGAnimatedPathSegListPropertyTearOff.h
deleted file mode 100644
index dfdb6d43164..00000000000
--- a/chromium/third_party/WebKit/Source/core/svg/properties/SVGAnimatedPathSegListPropertyTearOff.h
+++ /dev/null
@@ -1,118 +0,0 @@
-/*
- * Copyright (C) Research In Motion Limited 2010, 2012. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifndef SVGAnimatedPathSegListPropertyTearOff_h
-#define SVGAnimatedPathSegListPropertyTearOff_h
-
-#include "core/svg/SVGPathByteStream.h"
-#include "core/svg/SVGPathElement.h"
-#include "core/svg/SVGPathSegList.h"
-#include "core/svg/SVGPathUtilities.h"
-#include "core/svg/properties/SVGAnimatedListPropertyTearOff.h"
-#include "core/svg/properties/SVGPathSegListPropertyTearOff.h"
-
-namespace WebCore {
-
-class SVGAnimatedPathSegListPropertyTearOff : public SVGAnimatedListPropertyTearOff<SVGPathSegList> {
-public:
- virtual SVGListProperty<SVGPathSegList>* baseVal()
- {
- if (!m_baseVal)
- m_baseVal = SVGPathSegListPropertyTearOff::create(this, BaseValRole, PathSegUnalteredRole, m_values, m_wrappers);
- return static_cast<SVGListProperty<SVGPathSegList>*>(m_baseVal.get());
- }
-
- virtual SVGListProperty<SVGPathSegList>* animVal()
- {
- if (!m_animVal)
- m_animVal = SVGPathSegListPropertyTearOff::create(this, AnimValRole, PathSegUnalteredRole, m_values, m_wrappers);
- return static_cast<SVGListProperty<SVGPathSegList>*>(m_animVal.get());
- }
-
- int findItem(const RefPtr<SVGPathSeg>& segment) const
- {
- // This should ever be called for our baseVal, as animVal can't modify the list.
- ASSERT(m_baseVal);
- return static_cast<SVGPathSegListPropertyTearOff*>(m_baseVal.get())->findItem(segment);
- }
-
- void removeItemFromList(size_t itemIndex, bool shouldSynchronizeWrappers)
- {
- // This should ever be called for our baseVal, as animVal can't modify the list.
- ASSERT(m_baseVal);
- static_cast<SVGPathSegListPropertyTearOff*>(m_baseVal.get())->removeItemFromList(itemIndex, shouldSynchronizeWrappers);
- }
-
- static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values)
- {
- ASSERT(contextElement);
- return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
- }
-
- using SVGAnimatedListPropertyTearOff<SVGPathSegList>::animationStarted;
- void animationStarted(SVGPathByteStream* byteStream, const SVGPathSegList* baseValue)
- {
- ASSERT(byteStream);
- ASSERT(baseValue);
- ASSERT(!m_animatedPathByteStream);
- m_animatedPathByteStream = byteStream;
-
- // Pass shouldOwnValues=true, as the SVGPathSegList lifetime is solely managed by its tear off class.
- SVGPathSegList* copy = new SVGPathSegList(*baseValue);
- SVGAnimatedListPropertyTearOff<SVGPathSegList>::animationStarted(copy, true);
- }
-
- void animationEnded()
- {
- ASSERT(m_animatedPathByteStream);
- m_animatedPathByteStream = 0;
- SVGAnimatedListPropertyTearOff<SVGPathSegList>::animationEnded();
- }
-
- void animValDidChange()
- {
- ASSERT(m_animatedPathByteStream);
- SVGPathElement* pathElement = toSVGPathElement(contextElement());
-
- // If the animVal is observed from JS, we have to update it on each animation step.
- // This is an expensive operation and only done, if someone actually observes the animatedPathSegList() while an animation is running.
- if (pathElement->isAnimValObserved()) {
- SVGPathSegList& animatedList = currentAnimatedValue();
- animatedList.clear();
- buildSVGPathSegListFromByteStream(m_animatedPathByteStream, pathElement, animatedList, UnalteredParsing);
- }
-
- SVGAnimatedListPropertyTearOff<SVGPathSegList>::animValDidChange();
- }
-
- SVGPathByteStream* animatedPathByteStream() const { return m_animatedPathByteStream; }
-
-private:
- SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values)
- : SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, animatedPropertyType, values)
- , m_animatedPathByteStream(0)
- {
- }
-
- SVGPathByteStream* m_animatedPathByteStream;
-};
-
-}
-
-#endif // SVGAnimatedPathSegListPropertyTearOff_h