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 AnimatedIntegerOptionalInte
ger; } | 60 static AnimatedPropertyType classType() { return AnimatedIntegerOptionalInte
ger; } |
61 | 61 |
62 PassRefPtrWillBeRawPtr<SVGInteger> firstInteger() { return m_firstInteger; } | 62 PassRefPtrWillBeRawPtr<SVGInteger> firstInteger() const { return m_firstInte
ger; } |
63 PassRefPtrWillBeRawPtr<SVGInteger> secondInteger() { return m_secondInteger;
} | 63 PassRefPtrWillBeRawPtr<SVGInteger> secondInteger() const { return m_secondIn
teger; } |
64 | 64 |
65 DECLARE_VIRTUAL_TRACE(); | 65 DECLARE_VIRTUAL_TRACE(); |
66 | 66 |
67 protected: | 67 protected: |
68 SVGIntegerOptionalInteger(PassRefPtrWillBeRawPtr<SVGInteger> firstInteger, P
assRefPtrWillBeRawPtr<SVGInteger> secondInteger); | 68 SVGIntegerOptionalInteger(PassRefPtrWillBeRawPtr<SVGInteger> firstInteger, P
assRefPtrWillBeRawPtr<SVGInteger> secondInteger); |
69 | 69 |
70 RefPtrWillBeMember<SVGInteger> m_firstInteger; | 70 RefPtrWillBeMember<SVGInteger> m_firstInteger; |
71 RefPtrWillBeMember<SVGInteger> m_secondInteger; | 71 RefPtrWillBeMember<SVGInteger> m_secondInteger; |
72 }; | 72 }; |
73 | 73 |
74 inline PassRefPtrWillBeRawPtr<SVGIntegerOptionalInteger> toSVGIntegerOptionalInt
eger(PassRefPtrWillBeRawPtr<SVGPropertyBase> passBase) | 74 inline PassRefPtrWillBeRawPtr<SVGIntegerOptionalInteger> toSVGIntegerOptionalInt
eger(PassRefPtrWillBeRawPtr<SVGPropertyBase> passBase) |
75 { | 75 { |
76 RefPtrWillBeRawPtr<SVGPropertyBase> base = passBase; | 76 RefPtrWillBeRawPtr<SVGPropertyBase> base = passBase; |
77 ASSERT(base->type() == SVGIntegerOptionalInteger::classType()); | 77 ASSERT(base->type() == SVGIntegerOptionalInteger::classType()); |
78 return static_pointer_cast<SVGIntegerOptionalInteger>(base.release()); | 78 return static_pointer_cast<SVGIntegerOptionalInteger>(base.release()); |
79 } | 79 } |
80 | 80 |
| 81 inline const SVGIntegerOptionalInteger& toSVGIntegerOptionalInteger(const SVGPro
pertyBase& base) |
| 82 { |
| 83 ASSERT(base.type() == SVGIntegerOptionalInteger::classType()); |
| 84 return static_cast<const SVGIntegerOptionalInteger&>(base); |
| 85 } |
| 86 |
| 87 |
81 } // namespace blink | 88 } // namespace blink |
82 | 89 |
83 #endif // SVGIntegerOptionalInteger_h | 90 #endif // SVGIntegerOptionalInteger_h |
OLD | NEW |