| 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 30 matching lines...) Expand all Loading... |
| 41 // Tearoff of SVGNumberOptionalNumber is never created. | 41 // Tearoff of SVGNumberOptionalNumber is never created. |
| 42 typedef void TearOffType; | 42 typedef void TearOffType; |
| 43 typedef void PrimitiveType; | 43 typedef void PrimitiveType; |
| 44 | 44 |
| 45 static PassRefPtrWillBeRawPtr<SVGNumberOptionalNumber> create(PassRefPtrWill
BeRawPtr<SVGNumber> firstNumber, PassRefPtrWillBeRawPtr<SVGNumber> secondNumber) | 45 static PassRefPtrWillBeRawPtr<SVGNumberOptionalNumber> create(PassRefPtrWill
BeRawPtr<SVGNumber> firstNumber, PassRefPtrWillBeRawPtr<SVGNumber> secondNumber) |
| 46 { | 46 { |
| 47 return adoptRefWillBeNoop(new SVGNumberOptionalNumber(firstNumber, secon
dNumber)); | 47 return adoptRefWillBeNoop(new SVGNumberOptionalNumber(firstNumber, secon
dNumber)); |
| 48 } | 48 } |
| 49 | 49 |
| 50 PassRefPtrWillBeRawPtr<SVGNumberOptionalNumber> clone() const; | 50 PassRefPtrWillBeRawPtr<SVGNumberOptionalNumber> clone() const; |
| 51 virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const Stri
ng&) const override; | 51 PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const String&) con
st override; |
| 52 | 52 |
| 53 virtual String valueAsString() const override; | 53 String valueAsString() const override; |
| 54 void setValueAsString(const String&, ExceptionState&); | 54 void setValueAsString(const String&, ExceptionState&); |
| 55 | 55 |
| 56 virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) overr
ide; | 56 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override; |
| 57 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage,
unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWi
llBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndO
fDurationValue, 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 virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to,
SVGElement* 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() { return m_firstNumber; } |
| 63 PassRefPtrWillBeRawPtr<SVGNumber> secondNumber() { return m_secondNumber; } | 63 PassRefPtrWillBeRawPtr<SVGNumber> secondNumber() { return m_secondNumber; } |
| 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 } // namespace blink | 81 } // namespace blink |
| 82 | 82 |
| 83 #endif // SVGNumberOptionalNumber_h | 83 #endif // SVGNumberOptionalNumber_h |
| OLD | NEW |