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

Unified Diff: svg/SVGGlyphElement.cpp

Issue 500099: Fix link failure on LTCG builds.... (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 11 years 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
Index: svg/SVGGlyphElement.cpp
===================================================================
--- svg/SVGGlyphElement.cpp (revision 52205)
+++ svg/SVGGlyphElement.cpp (working copy)
@@ -49,7 +49,7 @@
void SVGGlyphElement::invalidateGlyphCache()
{
Node* fontNode = parentNode();
- if (fontNode && fontNode->hasTagName(fontTag)) {
+ if (fontNode && fontNode->hasTagName(SVGNames::fontTag)) {
if (SVGFontElement* element = static_cast<SVGFontElement*>(fontNode))
element->invalidateGlyphCache();
}
@@ -167,7 +167,7 @@
identifier.orientation = parseOrientation(getAttribute(orientationAttr));
identifier.arabicForm = parseArabicForm(getAttribute(arabic_formAttr));
- String language = getAttribute(langAttr);
+ String language = getAttribute(SVGNames::langAttr);
if (!language.isEmpty())
identifier.languages = parseDelimitedString(language, ',');
« svg/SVGAllInOne.cpp ('K') | « svg/SVGFontFaceElement.cpp ('k') | svg/SVGHKernElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698