| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "core/animation/animatable/AnimatableColor.h" | 34 #include "core/animation/animatable/AnimatableColor.h" |
| 35 #include "core/animation/animatable/AnimatableValue.h" | 35 #include "core/animation/animatable/AnimatableValue.h" |
| 36 #include "core/style/SVGComputedStyleDefs.h" | 36 #include "core/style/SVGComputedStyleDefs.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class AnimatableSVGPaint final : public AnimatableValue { | 40 class AnimatableSVGPaint final : public AnimatableValue { |
| 41 public: | 41 public: |
| 42 ~AnimatableSVGPaint() override { } | 42 ~AnimatableSVGPaint() override { } |
| 43 static PassRefPtrWillBeRawPtr<AnimatableSVGPaint> create( | 43 static PassRefPtr<AnimatableSVGPaint> create( |
| 44 SVGPaintType type, SVGPaintType visitedLinkType, | 44 SVGPaintType type, SVGPaintType visitedLinkType, |
| 45 const Color& color, const Color& visitedLinkColor, | 45 const Color& color, const Color& visitedLinkColor, |
| 46 const String& uri, const String& visitedLinkURI) | 46 const String& uri, const String& visitedLinkURI) |
| 47 { | 47 { |
| 48 return create(type, visitedLinkType, AnimatableColor::create(color, visi
tedLinkColor), uri, visitedLinkURI); | 48 return create(type, visitedLinkType, AnimatableColor::create(color, visi
tedLinkColor), uri, visitedLinkURI); |
| 49 } | 49 } |
| 50 static PassRefPtrWillBeRawPtr<AnimatableSVGPaint> create( | 50 static PassRefPtr<AnimatableSVGPaint> create( |
| 51 SVGPaintType type, SVGPaintType visitedLinkType, | 51 SVGPaintType type, SVGPaintType visitedLinkType, |
| 52 PassRefPtrWillBeRawPtr<AnimatableColor> color, | 52 PassRefPtr<AnimatableColor> color, |
| 53 const String& uri, const String& visitedLinkURI) | 53 const String& uri, const String& visitedLinkURI) |
| 54 { | 54 { |
| 55 return adoptRefWillBeNoop(new AnimatableSVGPaint(type, visitedLinkType,
color, uri, visitedLinkURI)); | 55 return adoptRef(new AnimatableSVGPaint(type, visitedLinkType, color, uri
, visitedLinkURI)); |
| 56 } | 56 } |
| 57 SVGPaintType paintType() const { return m_type; } | 57 SVGPaintType paintType() const { return m_type; } |
| 58 SVGPaintType visitedLinkPaintType() const { return m_visitedLinkType; } | 58 SVGPaintType visitedLinkPaintType() const { return m_visitedLinkType; } |
| 59 Color color() const { return m_color->color(); } | 59 Color color() const { return m_color->color(); } |
| 60 Color visitedLinkColor() const { return m_color->visitedLinkColor(); } | 60 Color visitedLinkColor() const { return m_color->visitedLinkColor(); } |
| 61 const String& uri() const { return m_uri; } | 61 const String& uri() const { return m_uri; } |
| 62 const String& visitedLinkURI() const { return m_visitedLinkURI; } | 62 const String& visitedLinkURI() const { return m_visitedLinkURI; } |
| 63 | 63 |
| 64 DEFINE_INLINE_VIRTUAL_TRACE() | |
| 65 { | |
| 66 visitor->trace(m_color); | |
| 67 AnimatableValue::trace(visitor); | |
| 68 } | |
| 69 | |
| 70 protected: | 64 protected: |
| 71 PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*
, double fraction) const override; | 65 PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fra
ction) const override; |
| 72 bool usesDefaultInterpolationWith(const AnimatableValue*) const override; | 66 bool usesDefaultInterpolationWith(const AnimatableValue*) const override; |
| 73 | 67 |
| 74 private: | 68 private: |
| 75 AnimatableSVGPaint(SVGPaintType type, SVGPaintType visitedLinkType, PassRefP
trWillBeRawPtr<AnimatableColor> color, const String& uri, const String& visitedL
inkURI) | 69 AnimatableSVGPaint(SVGPaintType type, SVGPaintType visitedLinkType, PassRefP
tr<AnimatableColor> color, const String& uri, const String& visitedLinkURI) |
| 76 : m_type(type) | 70 : m_type(type) |
| 77 , m_visitedLinkType(visitedLinkType) | 71 , m_visitedLinkType(visitedLinkType) |
| 78 , m_color(color) | 72 , m_color(color) |
| 79 , m_uri(uri) | 73 , m_uri(uri) |
| 80 , m_visitedLinkURI(visitedLinkURI) | 74 , m_visitedLinkURI(visitedLinkURI) |
| 81 { | 75 { |
| 82 } | 76 } |
| 83 AnimatableType type() const override { return TypeSVGPaint; } | 77 AnimatableType type() const override { return TypeSVGPaint; } |
| 84 bool equalTo(const AnimatableValue*) const override; | 78 bool equalTo(const AnimatableValue*) const override; |
| 85 | 79 |
| 86 SVGPaintType m_type; | 80 SVGPaintType m_type; |
| 87 SVGPaintType m_visitedLinkType; | 81 SVGPaintType m_visitedLinkType; |
| 88 // AnimatableColor includes a visited link color. | 82 // AnimatableColor includes a visited link color. |
| 89 RefPtrWillBeMember<AnimatableColor> m_color; | 83 RefPtr<AnimatableColor> m_color; |
| 90 String m_uri; | 84 String m_uri; |
| 91 String m_visitedLinkURI; | 85 String m_visitedLinkURI; |
| 92 }; | 86 }; |
| 93 | 87 |
| 94 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableSVGPaint, isSVGPaint()); | 88 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableSVGPaint, isSVGPaint()); |
| 95 | 89 |
| 96 } // namespace blink | 90 } // namespace blink |
| 97 | 91 |
| 98 #endif // AnimatableSVGPaint_h | 92 #endif // AnimatableSVGPaint_h |
| OLD | NEW |