Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: Source/core/animation/AnimatableSVGPaint.h

Issue 129133002: Update animation classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/animation/AnimatableSVGLength.h ('k') | Source/core/animation/AnimatableShadow.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/animation/AnimatableSVGLength.h ('k') | Source/core/animation/AnimatableShadow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698