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

Side by Side Diff: Source/core/svg/SVGLengthList.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/SVGLength.h ('k') | Source/core/svg/SVGLengthListTearOff.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) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 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 21 matching lines...) Expand all
32 #define SVGLengthList_h 32 #define SVGLengthList_h
33 33
34 #include "bindings/v8/ScriptWrappable.h" 34 #include "bindings/v8/ScriptWrappable.h"
35 #include "core/svg/SVGLength.h" 35 #include "core/svg/SVGLength.h"
36 #include "core/svg/properties/NewSVGListPropertyHelper.h" 36 #include "core/svg/properties/NewSVGListPropertyHelper.h"
37 37
38 namespace WebCore { 38 namespace WebCore {
39 39
40 class SVGLengthListTearOff; 40 class SVGLengthListTearOff;
41 41
42 class SVGLengthList : public NewSVGListPropertyHelper<SVGLengthList, SVGLength> { 42 class SVGLengthList FINAL : public NewSVGListPropertyHelper<SVGLengthList, SVGLe ngth> {
43 public: 43 public:
44 typedef SVGLengthListTearOff TearOffType; 44 typedef SVGLengthListTearOff TearOffType;
45 45
46 static PassRefPtr<SVGLengthList> create(SVGLengthMode mode = LengthModeOther ) 46 static PassRefPtr<SVGLengthList> create(SVGLengthMode mode = LengthModeOther )
47 { 47 {
48 return adoptRef(new SVGLengthList(mode)); 48 return adoptRef(new SVGLengthList(mode));
49 } 49 }
50 50
51 ~SVGLengthList(); 51 virtual ~SVGLengthList();
52 52
53 PassRefPtr<SVGLengthList> clone(); 53 PassRefPtr<SVGLengthList> clone();
54 54
55 void setValueAsString(const String&, ExceptionState&); 55 void setValueAsString(const String&, ExceptionState&);
56 56
57 // NewSVGPropertyBase: 57 // NewSVGPropertyBase:
58 virtual PassRefPtr<NewSVGPropertyBase> cloneForAnimation(const String&) cons t OVERRIDE; 58 virtual PassRefPtr<NewSVGPropertyBase> cloneForAnimation(const String&) cons t OVERRIDE;
59 virtual String valueAsString() const OVERRIDE; 59 virtual String valueAsString() const OVERRIDE;
60 60
61 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE; 61 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE;
62 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> fromValue, PassRefPtr<NewSV GPropertyBase> toValue, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, S VGElement*) OVERRIDE; 62 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> fromValue, PassRefPtr<NewSV GPropertyBase> toValue, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, S VGElement*) OVERRIDE;
63 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen t*) OVERRIDE; 63 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen t*) OVERRIDE;
64 64
65 static AnimatedPropertyType classType() { return AnimatedLengthList; } 65 static AnimatedPropertyType classType() { return AnimatedLengthList; }
66 66
67 private: 67 private:
68 explicit SVGLengthList(SVGLengthMode); 68 explicit SVGLengthList(SVGLengthMode);
69 69
70 bool adjustFromToListValues(PassRefPtr<SVGLengthList> fromList, PassRefPtr<S VGLengthList> toList, float percentage, bool isToAnimation, bool resizeAnimatedL istIfNeeded); 70 bool adjustFromToListValues(PassRefPtr<SVGLengthList> fromList, PassRefPtr<S VGLengthList> toList, float percentage, bool isToAnimation, bool resizeAnimatedL istIfNeeded);
71 71
72 template <typename CharType> 72 template <typename CharType>
73 void parseInternal(const CharType*& ptr, const CharType* end, ExceptionState &); 73 void parseInternal(const CharType*& ptr, const CharType* end, ExceptionState &);
74 74
75 SVGLengthMode m_mode; 75 SVGLengthMode m_mode;
76 }; 76 };
77 77
78 } // namespace WebCore 78 } // namespace WebCore
79 79
80 #endif // SVGLengthList_h 80 #endif // SVGLengthList_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGLength.h ('k') | Source/core/svg/SVGLengthListTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698