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

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

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | Annotate | Revision Log
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 // and not used for SVGStringList. 52 // and not used for SVGStringList.
53 class SVGStringList final : public SVGPropertyHelper<SVGStringList> { 53 class SVGStringList final : public SVGPropertyHelper<SVGStringList> {
54 public: 54 public:
55 typedef SVGStringListTearOff TearOffType; 55 typedef SVGStringListTearOff TearOffType;
56 56
57 static PassRefPtrWillBeRawPtr<SVGStringList> create() 57 static PassRefPtrWillBeRawPtr<SVGStringList> create()
58 { 58 {
59 return adoptRefWillBeNoop(new SVGStringList()); 59 return adoptRefWillBeNoop(new SVGStringList());
60 } 60 }
61 61
62 virtual ~SVGStringList(); 62 ~SVGStringList() override;
63 63
64 const Vector<String>& values() const { return m_values; } 64 const Vector<String>& values() const { return m_values; }
65 65
66 // SVGStringList DOM Spec implementation. These are only to be called from S VGStringListTearOff: 66 // SVGStringList DOM Spec implementation. These are only to be called from S VGStringListTearOff:
67 unsigned long length() { return m_values.size(); } 67 unsigned long length() { return m_values.size(); }
68 void clear() { m_values.clear(); } 68 void clear() { m_values.clear(); }
69 void initialize(const String&); 69 void initialize(const String&);
70 String getItem(size_t, ExceptionState&); 70 String getItem(size_t, ExceptionState&);
71 void insertItemBefore(const String&, size_t); 71 void insertItemBefore(const String&, size_t);
72 String removeItem(size_t, ExceptionState&); 72 String removeItem(size_t, ExceptionState&);
73 void appendItem(const String&); 73 void appendItem(const String&);
74 void replaceItem(const String&, size_t, ExceptionState&); 74 void replaceItem(const String&, size_t, ExceptionState&);
75 75
76 // SVGPropertyBase: 76 // SVGPropertyBase:
77 void setValueAsString(const String&, ExceptionState&); 77 void setValueAsString(const String&, ExceptionState&);
78 virtual String valueAsString() const override; 78 String valueAsString() const override;
79 79
80 virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) overr ide; 80 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
81 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> fromValue, PassRef PtrWillBeRawPtr<SVGPropertyBase> toValue, PassRefPtrWillBeRawPtr<SVGPropertyBase > toAtEndOfDurationValue, SVGElement*) override; 81 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> fromValue, PassRefPtrWillB eRawPtr<SVGPropertyBase> toValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEn dOfDurationValue, SVGElement*) override;
82 virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement*) override; 82 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme nt*) override;
83 83
84 static AnimatedPropertyType classType() { return AnimatedStringList; } 84 static AnimatedPropertyType classType() { return AnimatedStringList; }
85 85
86 private: 86 private:
87 SVGStringList(); 87 SVGStringList();
88 88
89 template <typename CharType> 89 template <typename CharType>
90 void parseInternal(const CharType*& ptr, const CharType* end); 90 void parseInternal(const CharType*& ptr, const CharType* end);
91 bool checkIndexBound(size_t, ExceptionState&); 91 bool checkIndexBound(size_t, ExceptionState&);
92 92
93 Vector<String> m_values; 93 Vector<String> m_values;
94 }; 94 };
95 95
96 } // namespace blink 96 } // namespace blink
97 97
98 #endif // SVGStringList_h 98 #endif // SVGStringList_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698