| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef SVGString_h | 31 #ifndef SVGString_h |
| 32 #define SVGString_h | 32 #define SVGString_h |
| 33 | 33 |
| 34 #include "core/svg/properties/NewSVGProperty.h" | 34 #include "core/svg/properties/SVGProperty.h" |
| 35 | 35 |
| 36 namespace WebCore { | 36 namespace WebCore { |
| 37 | 37 |
| 38 class SVGString : public NewSVGPropertyBase { | 38 class SVGString : public SVGPropertyBase { |
| 39 public: | 39 public: |
| 40 // SVGString does not have a tear-off type. | 40 // SVGString does not have a tear-off type. |
| 41 typedef void TearOffType; | 41 typedef void TearOffType; |
| 42 typedef String PrimitiveType; | 42 typedef String PrimitiveType; |
| 43 | 43 |
| 44 static PassRefPtr<SVGString> create() | 44 static PassRefPtr<SVGString> create() |
| 45 { | 45 { |
| 46 return adoptRef(new SVGString()); | 46 return adoptRef(new SVGString()); |
| 47 } | 47 } |
| 48 | 48 |
| 49 static PassRefPtr<SVGString> create(const String& value) | 49 static PassRefPtr<SVGString> create(const String& value) |
| 50 { | 50 { |
| 51 return adoptRef(new SVGString(value)); | 51 return adoptRef(new SVGString(value)); |
| 52 } | 52 } |
| 53 | 53 |
| 54 PassRefPtr<SVGString> clone() const { return create(m_value); } | 54 PassRefPtr<SVGString> clone() const { return create(m_value); } |
| 55 virtual PassRefPtr<NewSVGPropertyBase> cloneForAnimation(const String& value
) const OVERRIDE | 55 virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String& value) c
onst OVERRIDE |
| 56 { | 56 { |
| 57 return create(value); | 57 return create(value); |
| 58 } | 58 } |
| 59 | 59 |
| 60 virtual String valueAsString() const OVERRIDE { return m_value; } | 60 virtual String valueAsString() const OVERRIDE { return m_value; } |
| 61 void setValueAsString(const String& value, ExceptionState&) { m_value = valu
e; } | 61 void setValueAsString(const String& value, ExceptionState&) { m_value = valu
e; } |
| 62 | 62 |
| 63 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE; | 63 virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE; |
| 64 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage,
unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> from, PassRefPtr<NewSVGProp
ertyBase> to, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement*
) OVERRIDE; | 64 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage,
unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBa
se> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRID
E; |
| 65 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen
t*) OVERRIDE; | 65 virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*)
OVERRIDE; |
| 66 | 66 |
| 67 const String& value() const { return m_value; } | 67 const String& value() const { return m_value; } |
| 68 void setValue(const String& value) { m_value = value; } | 68 void setValue(const String& value) { m_value = value; } |
| 69 | 69 |
| 70 static AnimatedPropertyType classType() { return AnimatedString; } | 70 static AnimatedPropertyType classType() { return AnimatedString; } |
| 71 | 71 |
| 72 private: | 72 private: |
| 73 SVGString() | 73 SVGString() |
| 74 : NewSVGPropertyBase(classType()) | 74 : SVGPropertyBase(classType()) |
| 75 { | 75 { |
| 76 } | 76 } |
| 77 | 77 |
| 78 explicit SVGString(const String& value) | 78 explicit SVGString(const String& value) |
| 79 : NewSVGPropertyBase(classType()) | 79 : SVGPropertyBase(classType()) |
| 80 , m_value(value) | 80 , m_value(value) |
| 81 { | 81 { |
| 82 } | 82 } |
| 83 | 83 |
| 84 String m_value; | 84 String m_value; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 inline PassRefPtr<SVGString> toSVGString(PassRefPtr<NewSVGPropertyBase> passBase
) | 87 inline PassRefPtr<SVGString> toSVGString(PassRefPtr<SVGPropertyBase> passBase) |
| 88 { | 88 { |
| 89 RefPtr<NewSVGPropertyBase> base = passBase; | 89 RefPtr<SVGPropertyBase> base = passBase; |
| 90 ASSERT(base->type() == SVGString::classType()); | 90 ASSERT(base->type() == SVGString::classType()); |
| 91 return static_pointer_cast<SVGString>(base.release()); | 91 return static_pointer_cast<SVGString>(base.release()); |
| 92 } | 92 } |
| 93 | 93 |
| 94 } // namespace WebCore | 94 } // namespace WebCore |
| 95 | 95 |
| 96 #endif // SVGString_h | 96 #endif // SVGString_h |
| OLD | NEW |