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

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

Issue 1074813002: Remove isSupportedAttribute in svg (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: invalidation guard tweaks Created 5 years, 8 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) 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 94
95 void pathSegListChanged(ListModification = ListModificationUnknown); 95 void pathSegListChanged(ListModification = ListModificationUnknown);
96 96
97 virtual FloatRect getBBox() override; 97 virtual FloatRect getBBox() override;
98 98
99 DECLARE_VIRTUAL_TRACE(); 99 DECLARE_VIRTUAL_TRACE();
100 100
101 private: 101 private:
102 explicit SVGPathElement(Document&); 102 explicit SVGPathElement(Document&);
103 103
104 bool isSupportedAttribute(const QualifiedName&);
105 virtual void svgAttributeChanged(const QualifiedName&) override; 104 virtual void svgAttributeChanged(const QualifiedName&) override;
106 105
107 virtual Node::InsertionNotificationRequest insertedInto(ContainerNode*) over ride; 106 virtual Node::InsertionNotificationRequest insertedInto(ContainerNode*) over ride;
108 virtual void removedFrom(ContainerNode*) override; 107 virtual void removedFrom(ContainerNode*) override;
109 108
110 void invalidateMPathDependencies(); 109 void invalidateMPathDependencies();
111 110
112 RefPtrWillBeMember<SVGAnimatedNumber> m_pathLength; 111 RefPtrWillBeMember<SVGAnimatedNumber> m_pathLength;
113 RefPtrWillBeMember<SVGAnimatedPath> m_pathSegList; 112 RefPtrWillBeMember<SVGAnimatedPath> m_pathSegList;
114 }; 113 };
115 114
116 } // namespace blink 115 } // namespace blink
117 116
118 #endif // SVGPathElement_h 117 #endif // SVGPathElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698