| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2011-2012. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2011-2012. All rights reserved. |
| 3 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 3 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #include "core/svg/SVGAnimateTransformElement.h" | 23 #include "core/svg/SVGAnimateTransformElement.h" |
| 24 #include "core/svg/SVGAnimatedColor.h" | 24 #include "core/svg/SVGAnimatedColor.h" |
| 25 #include "core/svg/SVGAnimationElement.h" | 25 #include "core/svg/SVGAnimationElement.h" |
| 26 #include "core/svg/SVGLength.h" | 26 #include "core/svg/SVGLength.h" |
| 27 #include "core/svg/SVGLengthList.h" | 27 #include "core/svg/SVGLengthList.h" |
| 28 #include "core/svg/SVGNumber.h" | 28 #include "core/svg/SVGNumber.h" |
| 29 #include "core/svg/SVGPointList.h" | 29 #include "core/svg/SVGPointList.h" |
| 30 #include "core/svg/SVGString.h" | 30 #include "core/svg/SVGString.h" |
| 31 #include "core/svg/SVGTransformList.h" | 31 #include "core/svg/SVGTransformList.h" |
| 32 #include "core/svg/properties/SVGAnimatedProperty.h" |
| 32 | 33 |
| 33 namespace blink { | 34 namespace blink { |
| 34 | 35 |
| 35 SVGAnimatedTypeAnimator::SVGAnimatedTypeAnimator(SVGAnimationElement* animationE
lement) | 36 SVGAnimatedTypeAnimator::SVGAnimatedTypeAnimator(SVGAnimationElement* animationE
lement) |
| 36 : m_animationElement(animationElement) | 37 : m_animationElement(animationElement) |
| 37 , m_contextElement(nullptr) | 38 , m_contextElement(nullptr) |
| 38 , m_type(AnimatedUnknown) | 39 , m_type(AnimatedUnknown) |
| 39 { | 40 { |
| 40 ASSERT(m_animationElement); | 41 ASSERT(m_animationElement); |
| 41 } | 42 } |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 } | 214 } |
| 214 | 215 |
| 215 DEFINE_TRACE(SVGAnimatedTypeAnimator) | 216 DEFINE_TRACE(SVGAnimatedTypeAnimator) |
| 216 { | 217 { |
| 217 visitor->trace(m_animationElement); | 218 visitor->trace(m_animationElement); |
| 218 visitor->trace(m_contextElement); | 219 visitor->trace(m_contextElement); |
| 219 visitor->trace(m_animatedProperty); | 220 visitor->trace(m_animatedProperty); |
| 220 } | 221 } |
| 221 | 222 |
| 222 } // namespace blink | 223 } // namespace blink |
| OLD | NEW |