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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #ifndef AnimatableSVGPaint_h | 31 #ifndef AnimatableSVGPaint_h |
32 #define AnimatableSVGPaint_h | 32 #define AnimatableSVGPaint_h |
33 | 33 |
34 #include "core/animation/AnimatableColor.h" | 34 #include "core/animation/AnimatableColor.h" |
35 #include "core/animation/AnimatableValue.h" | 35 #include "core/animation/AnimatableValue.h" |
36 #include "core/svg/SVGPaint.h" | 36 #include "core/svg/SVGPaint.h" |
37 | 37 |
38 namespace WebCore { | 38 namespace WebCore { |
39 | 39 |
40 class AnimatableSVGPaint : public AnimatableValue { | 40 class AnimatableSVGPaint FINAL : public AnimatableValue { |
41 public: | 41 public: |
42 virtual ~AnimatableSVGPaint() { } | 42 virtual ~AnimatableSVGPaint() { } |
43 static PassRefPtr<AnimatableSVGPaint> create(SVGPaint::SVGPaintType type, co
nst Color& color, const String& uri) | 43 static PassRefPtr<AnimatableSVGPaint> create(SVGPaint::SVGPaintType type, co
nst Color& color, const String& uri) |
44 { | 44 { |
45 return create(type, AnimatableColorImpl(color), uri); | 45 return create(type, AnimatableColorImpl(color), uri); |
46 } | 46 } |
47 static PassRefPtr<AnimatableSVGPaint> create(SVGPaint::SVGPaintType type, co
nst AnimatableColorImpl& color, const String& uri) | 47 static PassRefPtr<AnimatableSVGPaint> create(SVGPaint::SVGPaintType type, co
nst AnimatableColorImpl& color, const String& uri) |
48 { | 48 { |
49 return adoptRef(new AnimatableSVGPaint(type, color, uri)); | 49 return adoptRef(new AnimatableSVGPaint(type, color, uri)); |
50 } | 50 } |
(...skipping 19 matching lines...) Expand all Loading... |
70 SVGPaint::SVGPaintType m_type; | 70 SVGPaint::SVGPaintType m_type; |
71 AnimatableColorImpl m_color; | 71 AnimatableColorImpl m_color; |
72 String m_uri; | 72 String m_uri; |
73 }; | 73 }; |
74 | 74 |
75 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableSVGPaint, isSVGPaint()); | 75 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableSVGPaint, isSVGPaint()); |
76 | 76 |
77 } // namespace WebCore | 77 } // namespace WebCore |
78 | 78 |
79 #endif // AnimatableSVGPaint_h | 79 #endif // AnimatableSVGPaint_h |
OLD | NEW |