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

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

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/SVGPointListTearOff.h ('k') | Source/core/svg/SVGPolygonElement.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) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 21 matching lines...) Expand all
32 public: 32 public:
33 SVGAnimatedPointList* points() { return m_points.get(); } 33 SVGAnimatedPointList* points() { return m_points.get(); }
34 34
35 PassRefPtr<SVGPointListTearOff> pointsFromJavascript() { return m_points->ba seVal(); } 35 PassRefPtr<SVGPointListTearOff> pointsFromJavascript() { return m_points->ba seVal(); }
36 PassRefPtr<SVGPointListTearOff> animatedPoints() { return m_points->animVal( ); } 36 PassRefPtr<SVGPointListTearOff> animatedPoints() { return m_points->animVal( ); }
37 37
38 protected: 38 protected:
39 SVGPolyElement(const QualifiedName&, Document&); 39 SVGPolyElement(const QualifiedName&, Document&);
40 40
41 private: 41 private:
42 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE FINAL; 42 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr ide final;
43 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE FINAL; 43 virtual void svgAttributeChanged(const QualifiedName&) override final;
44 44
45 private: 45 private:
46 RefPtr<SVGAnimatedPointList> m_points; 46 RefPtr<SVGAnimatedPointList> m_points;
47 47
48 }; 48 };
49 49
50 inline bool isSVGPolyElement(const SVGElement& element) 50 inline bool isSVGPolyElement(const SVGElement& element)
51 { 51 {
52 return element.hasTagName(SVGNames::polygonTag) || element.hasTagName(SVGNam es::polylineTag); 52 return element.hasTagName(SVGNames::polygonTag) || element.hasTagName(SVGNam es::polylineTag);
53 } 53 }
54 54
55 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGPolyElement); 55 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGPolyElement);
56 56
57 } // namespace blink 57 } // namespace blink
58 58
59 #endif 59 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGPointListTearOff.h ('k') | Source/core/svg/SVGPolygonElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698