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

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

Issue 21042009: [SVG2] Merge SVGStyledElement into SVGElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 5 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/SVGGlyphElement.h ('k') | Source/core/svg/SVGGlyphRefElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGGlyphElement.cpp
diff --git a/Source/core/svg/SVGGlyphElement.cpp b/Source/core/svg/SVGGlyphElement.cpp
index 4a09d87855238d64092d5d66cb782d8ffa978a3b..31bcc2deb84a8b71ad8726bd0e174f523f5554f0 100644
--- a/Source/core/svg/SVGGlyphElement.cpp
+++ b/Source/core/svg/SVGGlyphElement.cpp
@@ -32,7 +32,7 @@
namespace WebCore {
inline SVGGlyphElement::SVGGlyphElement(const QualifiedName& tagName, Document* document)
- : SVGStyledElement(tagName, document)
+ : SVGElement(tagName, document)
{
ASSERT(hasTagName(SVGNames::glyphTag));
ScriptWrappable::init(this);
@@ -55,20 +55,20 @@ void SVGGlyphElement::parseAttribute(const QualifiedName& name, const AtomicStri
if (name == SVGNames::dAttr)
invalidateGlyphCache();
else
- SVGStyledElement::parseAttribute(name, value);
+ SVGElement::parseAttribute(name, value);
}
Node::InsertionNotificationRequest SVGGlyphElement::insertedInto(ContainerNode* rootParent)
{
invalidateGlyphCache();
- return SVGStyledElement::insertedInto(rootParent);
+ return SVGElement::insertedInto(rootParent);
}
void SVGGlyphElement::removedFrom(ContainerNode* rootParent)
{
if (rootParent->inDocument())
invalidateGlyphCache();
- SVGStyledElement::removedFrom(rootParent);
+ SVGElement::removedFrom(rootParent);
}
static inline SVGGlyph::ArabicForm parseArabicForm(const AtomicString& value)
« no previous file with comments | « Source/core/svg/SVGGlyphElement.h ('k') | Source/core/svg/SVGGlyphRefElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698