| 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 SVGBoolean_h | 31 #ifndef SVGBoolean_h |
| 32 #define SVGBoolean_h | 32 #define SVGBoolean_h |
| 33 | 33 |
| 34 #include "core/svg/SVGParsingError.h" |
| 34 #include "core/svg/properties/SVGPropertyHelper.h" | 35 #include "core/svg/properties/SVGPropertyHelper.h" |
| 35 | 36 |
| 36 namespace blink { | 37 namespace blink { |
| 37 | 38 |
| 38 class SVGBoolean : public SVGPropertyHelper<SVGBoolean> { | 39 class SVGBoolean : public SVGPropertyHelper<SVGBoolean> { |
| 39 public: | 40 public: |
| 40 // SVGBoolean does not have a tear-off type. | 41 // SVGBoolean does not have a tear-off type. |
| 41 typedef void TearOffType; | 42 typedef void TearOffType; |
| 42 typedef bool PrimitiveType; | 43 typedef bool PrimitiveType; |
| 43 | 44 |
| 44 static PassRefPtrWillBeRawPtr<SVGBoolean> create(bool value = false) | 45 static PassRefPtrWillBeRawPtr<SVGBoolean> create(bool value = false) |
| 45 { | 46 { |
| 46 return adoptRefWillBeNoop(new SVGBoolean(value)); | 47 return adoptRefWillBeNoop(new SVGBoolean(value)); |
| 47 } | 48 } |
| 48 | 49 |
| 49 PassRefPtrWillBeRawPtr<SVGBoolean> clone() const { return create(m_value); } | 50 PassRefPtrWillBeRawPtr<SVGBoolean> clone() const { return create(m_value); } |
| 50 | 51 |
| 51 String valueAsString() const override; | 52 String valueAsString() const override; |
| 52 void setValueAsString(const String&, ExceptionState&); | 53 SVGParsingError setValueAsString(const String&); |
| 53 | 54 |
| 54 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override; | 55 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override; |
| 55 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned
repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawP
tr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuratio
nValue, SVGElement*) override; | 56 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned
repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawP
tr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuratio
nValue, SVGElement*) override; |
| 56 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme
nt*) override; | 57 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme
nt*) override; |
| 57 | 58 |
| 58 bool value() const { return m_value; } | 59 bool value() const { return m_value; } |
| 59 void setValue(bool value) { m_value = value; } | 60 void setValue(bool value) { m_value = value; } |
| 60 | 61 |
| 61 static AnimatedPropertyType classType() { return AnimatedBoolean; } | 62 static AnimatedPropertyType classType() { return AnimatedBoolean; } |
| 62 | 63 |
| 63 private: | 64 private: |
| 64 SVGBoolean(bool value) | 65 SVGBoolean(bool value) |
| 65 : m_value(value) | 66 : m_value(value) |
| 66 { | 67 { |
| 67 } | 68 } |
| 68 | 69 |
| 69 bool m_value; | 70 bool m_value; |
| 70 }; | 71 }; |
| 71 | 72 |
| 72 DEFINE_SVG_PROPERTY_TYPE_CASTS(SVGBoolean); | 73 DEFINE_SVG_PROPERTY_TYPE_CASTS(SVGBoolean); |
| 73 | 74 |
| 74 } // namespace blink | 75 } // namespace blink |
| 75 | 76 |
| 76 #endif // SVGBoolean_h | 77 #endif // SVGBoolean_h |
| OLD | NEW |