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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGUseElement.h

Issue 2485663002: Store CSSPropertyID in SVGAnimatedPropertyBase (Closed)
Patch Set: Add missing case Created 4 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann
3 * <zimmermann@kde.org> 3 * <zimmermann@kde.org>
4 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 4 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 DECLARE_VIRTUAL_TRACE(); 61 DECLARE_VIRTUAL_TRACE();
62 62
63 private: 63 private:
64 explicit SVGUseElement(Document&); 64 explicit SVGUseElement(Document&);
65 65
66 void dispose(); 66 void dispose();
67 67
68 FloatRect getBBox() override; 68 FloatRect getBBox() override;
69 69
70 bool isPresentationAttribute(const QualifiedName&) const override;
71 void collectStyleForPresentationAttribute(const QualifiedName&, 70 void collectStyleForPresentationAttribute(const QualifiedName&,
72 const AtomicString&, 71 const AtomicString&,
73 MutableStylePropertySet*) override; 72 MutableStylePropertySet*) override;
74 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
75 73
76 bool isStructurallyExternal() const override; 74 bool isStructurallyExternal() const override;
77 75
78 InsertionNotificationRequest insertedInto(ContainerNode*) override; 76 InsertionNotificationRequest insertedInto(ContainerNode*) override;
79 void removedFrom(ContainerNode*) override; 77 void removedFrom(ContainerNode*) override;
80 78
81 void svgAttributeChanged(const QualifiedName&) override; 79 void svgAttributeChanged(const QualifiedName&) override;
82 80
83 LayoutObject* createLayoutObject(const ComputedStyle&) override; 81 LayoutObject* createLayoutObject(const ComputedStyle&) override;
84 82
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 bool m_elementIdentifierIsLocal; 119 bool m_elementIdentifierIsLocal;
122 bool m_haveFiredLoadEvent; 120 bool m_haveFiredLoadEvent;
123 bool m_needsShadowTreeRecreation; 121 bool m_needsShadowTreeRecreation;
124 Member<SVGElement> m_targetElementInstance; 122 Member<SVGElement> m_targetElementInstance;
125 Member<DocumentResource> m_resource; 123 Member<DocumentResource> m_resource;
126 }; 124 };
127 125
128 } // namespace blink 126 } // namespace blink
129 127
130 #endif // SVGUseElement_h 128 #endif // SVGUseElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGSVGElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGUseElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698