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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 | 52 |
53 String valueAsString() const override; | 53 String valueAsString() const override; |
54 void setValueAsString(const String&, ExceptionState&); | 54 void setValueAsString(const String&, ExceptionState&); |
55 | 55 |
56 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override; | 56 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override; |
57 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned
repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawP
tr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuratio
nValue, SVGElement* contextElement) override; | 57 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned
repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawP
tr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuratio
nValue, SVGElement* contextElement) override; |
58 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme
nt* contextElement) override; | 58 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme
nt* contextElement) override; |
59 | 59 |
60 static AnimatedPropertyType classType() { return AnimatedNumberOptionalNumbe
r; } | 60 static AnimatedPropertyType classType() { return AnimatedNumberOptionalNumbe
r; } |
61 | 61 |
62 PassRefPtrWillBeRawPtr<SVGNumber> firstNumber() { return m_firstNumber; } | 62 PassRefPtrWillBeRawPtr<SVGNumber> firstNumber() const { return m_firstNumber
; } |
63 PassRefPtrWillBeRawPtr<SVGNumber> secondNumber() { return m_secondNumber; } | 63 PassRefPtrWillBeRawPtr<SVGNumber> secondNumber() const { return m_secondNumb
er; } |
64 | 64 |
65 DECLARE_VIRTUAL_TRACE(); | 65 DECLARE_VIRTUAL_TRACE(); |
66 | 66 |
67 protected: | 67 protected: |
68 SVGNumberOptionalNumber(PassRefPtrWillBeRawPtr<SVGNumber> firstNumber, PassR
efPtrWillBeRawPtr<SVGNumber> secondNumber); | 68 SVGNumberOptionalNumber(PassRefPtrWillBeRawPtr<SVGNumber> firstNumber, PassR
efPtrWillBeRawPtr<SVGNumber> secondNumber); |
69 | 69 |
70 RefPtrWillBeMember<SVGNumber> m_firstNumber; | 70 RefPtrWillBeMember<SVGNumber> m_firstNumber; |
71 RefPtrWillBeMember<SVGNumber> m_secondNumber; | 71 RefPtrWillBeMember<SVGNumber> m_secondNumber; |
72 }; | 72 }; |
73 | 73 |
74 inline PassRefPtrWillBeRawPtr<SVGNumberOptionalNumber> toSVGNumberOptionalNumber
(PassRefPtrWillBeRawPtr<SVGPropertyBase> passBase) | 74 inline PassRefPtrWillBeRawPtr<SVGNumberOptionalNumber> toSVGNumberOptionalNumber
(PassRefPtrWillBeRawPtr<SVGPropertyBase> passBase) |
75 { | 75 { |
76 RefPtrWillBeRawPtr<SVGPropertyBase> base = passBase; | 76 RefPtrWillBeRawPtr<SVGPropertyBase> base = passBase; |
77 ASSERT(base->type() == SVGNumberOptionalNumber::classType()); | 77 ASSERT(base->type() == SVGNumberOptionalNumber::classType()); |
78 return static_pointer_cast<SVGNumberOptionalNumber>(base.release()); | 78 return static_pointer_cast<SVGNumberOptionalNumber>(base.release()); |
79 } | 79 } |
80 | 80 |
| 81 inline const SVGNumberOptionalNumber& toSVGNumberOptionalNumber(const SVGPropert
yBase& base) |
| 82 { |
| 83 ASSERT(base.type() == SVGNumberOptionalNumber::classType()); |
| 84 return static_cast<const SVGNumberOptionalNumber&>(base); |
| 85 } |
| 86 |
81 } // namespace blink | 87 } // namespace blink |
82 | 88 |
83 #endif // SVGNumberOptionalNumber_h | 89 #endif // SVGNumberOptionalNumber_h |
OLD | NEW |