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

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

Issue 177093026: Remove unused SVG code (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 | « no previous file | Source/core/svg/SVGElement.cpp » ('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 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 * Copyright (C) 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2009 Apple Inc. All rights reserved.
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 void setCursorImageValue(CSSCursorImageValue*); 117 void setCursorImageValue(CSSCursorImageValue*);
118 void cursorImageValueRemoved(); 118 void cursorImageValueRemoved();
119 119
120 SVGElement* correspondingElement(); 120 SVGElement* correspondingElement();
121 void setCorrespondingElement(SVGElement*); 121 void setCorrespondingElement(SVGElement*);
122 122
123 void synchronizeAnimatedSVGAttribute(const QualifiedName&) const; 123 void synchronizeAnimatedSVGAttribute(const QualifiedName&) const;
124 124
125 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE FINAL; 125 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE FINAL;
126 126
127 static void synchronizeRequiredFeatures(SVGElement* contextElement);
128 static void synchronizeRequiredExtensions(SVGElement* contextElement);
129 static void synchronizeSystemLanguage(SVGElement* contextElement);
130
131 virtual void synchronizeRequiredFeatures() { } 127 virtual void synchronizeRequiredFeatures() { }
132 virtual void synchronizeRequiredExtensions() { } 128 virtual void synchronizeRequiredExtensions() { }
133 virtual void synchronizeSystemLanguage() { } 129 virtual void synchronizeSystemLanguage() { }
134 130
135 #ifndef NDEBUG 131 #ifndef NDEBUG
136 virtual bool isAnimatableAttribute(const QualifiedName&) const; 132 virtual bool isAnimatableAttribute(const QualifiedName&) const;
137 #endif 133 #endif
138 134
139 MutableStylePropertySet* animatedSMILStyleProperties() const; 135 MutableStylePropertySet* animatedSMILStyleProperties() const;
140 MutableStylePropertySet* ensureAnimatedSMILStyleProperties(); 136 MutableStylePropertySet* ensureAnimatedSMILStyleProperties();
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 return DefaultHash<QualifiedName>::Hash::hash(key); 250 return DefaultHash<QualifiedName>::Hash::hash(key);
255 } 251 }
256 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a .matches(b); } 252 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a .matches(b); }
257 }; 253 };
258 254
259 DEFINE_NODE_TYPE_CASTS(SVGElement, isSVGElement()); 255 DEFINE_NODE_TYPE_CASTS(SVGElement, isSVGElement());
260 256
261 } 257 }
262 258
263 #endif 259 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698