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

Unified Diff: Source/core/svg/SVGPointListTearOff.h

Issue 132233016: [SVG] SVGAnimatedPointList migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: set NeedsRebaseline 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGPointList.idl ('k') | Source/core/svg/SVGPointTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPointListTearOff.h
diff --git a/Source/core/svg/SVGLengthListTearOff.h b/Source/core/svg/SVGPointListTearOff.h
similarity index 67%
copy from Source/core/svg/SVGLengthListTearOff.h
copy to Source/core/svg/SVGPointListTearOff.h
index b28dc8c94e6171147890fb606b6d1c0e53bed86f..c7a6319b327559ba5e39c6b725ebc8946b6bc677 100644
--- a/Source/core/svg/SVGLengthListTearOff.h
+++ b/Source/core/svg/SVGPointListTearOff.h
@@ -28,26 +28,26 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef SVGLengthListTearOff_h
-#define SVGLengthListTearOff_h
+#ifndef SVGPointListTearOff_h
+#define SVGPointListTearOff_h
-#include "core/svg/SVGLengthList.h"
+#include "core/svg/SVGPointList.h"
#include "core/svg/properties/NewSVGListPropertyTearOffHelper.h"
namespace WebCore {
-class SVGLengthListTearOff FINAL :
- public NewSVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>,
+class SVGPointListTearOff FINAL :
+ public NewSVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>,
public ScriptWrappable {
public:
- static PassRefPtr<SVGLengthListTearOff> create(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
+ static PassRefPtr<SVGPointListTearOff> create(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
{
- return adoptRef(new SVGLengthListTearOff(target, contextElement, propertyIsAnimVal, attributeName));
+ return adoptRef(new SVGPointListTearOff(target, contextElement, propertyIsAnimVal, attributeName));
}
private:
- SVGLengthListTearOff(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
- : NewSVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>(target, contextElement, propertyIsAnimVal, attributeName)
+ SVGPointListTearOff(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
+ : NewSVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>(target, contextElement, propertyIsAnimVal, attributeName)
{
ScriptWrappable::init(this);
}
@@ -55,4 +55,4 @@ private:
} // namespace WebCore
-#endif // SVGLengthListTearOff_h_
+#endif // SVGPointListTearOff_h_
« no previous file with comments | « Source/core/svg/SVGPointList.idl ('k') | Source/core/svg/SVGPointTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698