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

Side by Side Diff: Source/core/svg/SVGAnimatedString.h

Issue 134593005: Update SVG 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/svg/SVGAnimatedRect.h ('k') | Source/core/svg/SVGAnimatedTransformList.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) Research In Motion Limited 2010. All rights reserved. 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 19 matching lines...) Expand all
30 30
31 // Helper macros to declare/define a SVGAnimatedString object 31 // Helper macros to declare/define a SVGAnimatedString object
32 #define DECLARE_ANIMATED_STRING(UpperProperty, LowerProperty) \ 32 #define DECLARE_ANIMATED_STRING(UpperProperty, LowerProperty) \
33 DECLARE_ANIMATED_PROPERTY(SVGAnimatedString, String, UpperProperty, LowerPropert y) 33 DECLARE_ANIMATED_PROPERTY(SVGAnimatedString, String, UpperProperty, LowerPropert y)
34 34
35 #define DEFINE_ANIMATED_STRING(OwnerType, DOMAttribute, UpperProperty, LowerProp erty) \ 35 #define DEFINE_ANIMATED_STRING(OwnerType, DOMAttribute, UpperProperty, LowerProp erty) \
36 DEFINE_ANIMATED_PROPERTY(AnimatedString, OwnerType, DOMAttribute, DOMAttribute.l ocalName(), UpperProperty, LowerProperty, SVGAnimatedString, String) 36 DEFINE_ANIMATED_PROPERTY(AnimatedString, OwnerType, DOMAttribute, DOMAttribute.l ocalName(), UpperProperty, LowerProperty, SVGAnimatedString, String)
37 37
38 class SVGAnimationElement; 38 class SVGAnimationElement;
39 39
40 class SVGAnimatedStringAnimator : public SVGAnimatedTypeAnimator { 40 class SVGAnimatedStringAnimator FINAL : public SVGAnimatedTypeAnimator {
41 public: 41 public:
42 SVGAnimatedStringAnimator(SVGAnimationElement*, SVGElement*); 42 SVGAnimatedStringAnimator(SVGAnimationElement*, SVGElement*);
43 virtual ~SVGAnimatedStringAnimator() { } 43 virtual ~SVGAnimatedStringAnimator() { }
44 44
45 virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&); 45 virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&) OVERR IDE;
46 virtual PassOwnPtr<SVGAnimatedType> startAnimValAnimation(const SVGElementAn imatedPropertyList&); 46 virtual PassOwnPtr<SVGAnimatedType> startAnimValAnimation(const SVGElementAn imatedPropertyList&) OVERRIDE;
47 virtual void stopAnimValAnimation(const SVGElementAnimatedPropertyList&); 47 virtual void stopAnimValAnimation(const SVGElementAnimatedPropertyList&) OVE RRIDE;
48 virtual void resetAnimValToBaseVal(const SVGElementAnimatedPropertyList&, SV GAnimatedType*); 48 virtual void resetAnimValToBaseVal(const SVGElementAnimatedPropertyList&, SV GAnimatedType*) OVERRIDE;
49 virtual void animValWillChange(const SVGElementAnimatedPropertyList&); 49 virtual void animValWillChange(const SVGElementAnimatedPropertyList&) OVERRI DE;
50 virtual void animValDidChange(const SVGElementAnimatedPropertyList&); 50 virtual void animValDidChange(const SVGElementAnimatedPropertyList&) OVERRID E;
51 51
52 virtual void addAnimatedTypes(SVGAnimatedType*, SVGAnimatedType*); 52 virtual void addAnimatedTypes(SVGAnimatedType*, SVGAnimatedType*) OVERRIDE;
53 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*); 53 virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*) OVERRIDE ;
54 virtual float calculateDistance(const String& fromString, const String& toSt ring); 54 virtual float calculateDistance(const String& fromString, const String& toSt ring) OVERRIDE;
55 }; 55 };
56 56
57 } // namespace WebCore 57 } // namespace WebCore
58 58
59 #endif 59 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGAnimatedRect.h ('k') | Source/core/svg/SVGAnimatedTransformList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698