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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 { | 54 { |
55 return adoptRefWillBeNoop(new AnimatableSVGPaint(type, visitedLinkType,
color, uri, visitedLinkURI)); | 55 return adoptRefWillBeNoop(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 virtual void trace(Visitor* visitor) override | 64 DEFINE_INLINE_VIRTUAL_TRACE() |
65 { | 65 { |
66 visitor->trace(m_color); | 66 visitor->trace(m_color); |
67 AnimatableValue::trace(visitor); | 67 AnimatableValue::trace(visitor); |
68 } | 68 } |
69 | 69 |
70 protected: | 70 protected: |
71 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const Animatab
leValue*, double fraction) const override; | 71 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const Animatab
leValue*, double fraction) const override; |
72 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const over
ride; | 72 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const over
ride; |
73 | 73 |
74 private: | 74 private: |
(...skipping 14 matching lines...) Expand all Loading... |
89 RefPtrWillBeMember<AnimatableColor> m_color; | 89 RefPtrWillBeMember<AnimatableColor> m_color; |
90 String m_uri; | 90 String m_uri; |
91 String m_visitedLinkURI; | 91 String m_visitedLinkURI; |
92 }; | 92 }; |
93 | 93 |
94 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableSVGPaint, isSVGPaint()); | 94 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableSVGPaint, isSVGPaint()); |
95 | 95 |
96 } // namespace blink | 96 } // namespace blink |
97 | 97 |
98 #endif // AnimatableSVGPaint_h | 98 #endif // AnimatableSVGPaint_h |
OLD | NEW |