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

Unified Diff: Source/core/svg/SVGGraphicsElement.cpp

Issue 18334002: Remove SVGStyledLocatableElement class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove SVGElement::isStyledLocatable() Created 7 years, 6 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/SVGGraphicsElement.h ('k') | Source/core/svg/SVGLocatable.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGGraphicsElement.cpp
diff --git a/Source/core/svg/SVGGraphicsElement.cpp b/Source/core/svg/SVGGraphicsElement.cpp
index ab14dc6f618aa25a5ca67206837f5da69367795a..9838822837530c3895f45e71e6ff4aef52e4bc67 100644
--- a/Source/core/svg/SVGGraphicsElement.cpp
+++ b/Source/core/svg/SVGGraphicsElement.cpp
@@ -41,7 +41,7 @@ BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGGraphicsElement)
END_REGISTER_ANIMATED_PROPERTIES
SVGGraphicsElement::SVGGraphicsElement(const QualifiedName& tagName, Document* document, ConstructionType constructionType)
- : SVGStyledLocatableElement(tagName, document, constructionType)
+ : SVGStyledElement(tagName, document, constructionType)
{
registerAnimatedPropertiesForSVGGraphicsElement();
}
@@ -101,7 +101,7 @@ bool SVGGraphicsElement::isSupportedAttribute(const QualifiedName& attrName)
void SVGGraphicsElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
{
if (!isSupportedAttribute(name)) {
- SVGStyledLocatableElement::parseAttribute(name, value);
+ SVGStyledElement::parseAttribute(name, value);
return;
}
@@ -119,7 +119,7 @@ void SVGGraphicsElement::parseAttribute(const QualifiedName& name, const AtomicS
void SVGGraphicsElement::svgAttributeChanged(const QualifiedName& attrName)
{
if (!isSupportedAttribute(attrName)) {
- SVGStyledLocatableElement::svgAttributeChanged(attrName);
+ SVGStyledElement::svgAttributeChanged(attrName);
return;
}
« no previous file with comments | « Source/core/svg/SVGGraphicsElement.h ('k') | Source/core/svg/SVGLocatable.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698