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

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

Issue 378343004: Use Reflect on attributes in xml namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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/SVGElement.h ('k') | Source/core/svg/SVGElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGElement.cpp
diff --git a/Source/core/svg/SVGElement.cpp b/Source/core/svg/SVGElement.cpp
index a9818bbdced37c909712a016bbab8de3e8e5df05..b0b125dc0a723402a76bbb7c4f199536412d9a35 100644
--- a/Source/core/svg/SVGElement.cpp
+++ b/Source/core/svg/SVGElement.cpp
@@ -244,36 +244,6 @@ AffineTransform SVGElement::localCoordinateSpaceTransform(CTMScope) const
return AffineTransform();
}
-const AtomicString& SVGElement::xmlbase() const
-{
- return fastGetAttribute(XMLNames::baseAttr);
-}
-
-void SVGElement::setXMLbase(const AtomicString& value)
-{
- setAttribute(XMLNames::baseAttr, value);
-}
-
-const AtomicString& SVGElement::xmllang() const
-{
- return fastGetAttribute(XMLNames::langAttr);
-}
-
-void SVGElement::setXMLlang(const AtomicString& value)
-{
- setAttribute(XMLNames::langAttr, value);
-}
-
-const AtomicString& SVGElement::xmlspace() const
-{
- return fastGetAttribute(XMLNames::spaceAttr);
-}
-
-void SVGElement::setXMLspace(const AtomicString& value)
-{
- setAttribute(XMLNames::spaceAttr, value);
-}
-
Node::InsertionNotificationRequest SVGElement::insertedInto(ContainerNode* rootParent)
{
Element::insertedInto(rootParent);
« no previous file with comments | « Source/core/svg/SVGElement.h ('k') | Source/core/svg/SVGElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698