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

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

Issue 26896005: IDL compiler: remove special case capitalization (cssText, xmllang, xmlbase, xmlspace) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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/SVGLangSpace.h ('k') | Source/core/svg/SVGPaint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGLangSpace.cpp
diff --git a/Source/core/svg/SVGLangSpace.cpp b/Source/core/svg/SVGLangSpace.cpp
index c6bfe936ee51474cae7979b8c142056783a24f93..feba88ee2ebce78bfb5a3b7dd1f1e7a84b882d20 100644
--- a/Source/core/svg/SVGLangSpace.cpp
+++ b/Source/core/svg/SVGLangSpace.cpp
@@ -26,7 +26,7 @@
namespace WebCore {
-void SVGLangSpace::setXmllang(const AtomicString& xmlLang)
+void SVGLangSpace::setXMLlang(const AtomicString& xmlLang)
{
m_lang = xmlLang;
}
@@ -41,7 +41,7 @@ const AtomicString& SVGLangSpace::xmlspace() const
return m_space;
}
-void SVGLangSpace::setXmlspace(const AtomicString& xmlSpace)
+void SVGLangSpace::setXMLspace(const AtomicString& xmlSpace)
{
m_space = xmlSpace;
}
@@ -49,11 +49,11 @@ void SVGLangSpace::setXmlspace(const AtomicString& xmlSpace)
bool SVGLangSpace::parseAttribute(const QualifiedName& name, const AtomicString& value)
{
if (name.matches(XMLNames::langAttr)) {
- setXmllang(value);
+ setXMLlang(value);
eseidel 2013/10/17 07:02:20 Not setXMLLang?
Nils Barth (inactive) 2013/10/17 07:11:33 That's why it got special-cased in the first place
return true;
}
if (name.matches(XMLNames::spaceAttr)) {
- setXmlspace(value);
+ setXMLspace(value);
return true;
}
« no previous file with comments | « Source/core/svg/SVGLangSpace.h ('k') | Source/core/svg/SVGPaint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698