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

Side by Side Diff: Source/core/svg/SVGGlyphElement.cpp

Issue 192143002: Use isSVG*Element() helpers more in SVG code (Part 2) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/svg/SVGHKernElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
3 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 3 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
4 * Copyright (C) 2008 Rob Buis <buis@kde.org> 4 * Copyright (C) 2008 Rob Buis <buis@kde.org>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 26 matching lines...) Expand all
37 } 37 }
38 38
39 PassRefPtr<SVGGlyphElement> SVGGlyphElement::create(Document& document) 39 PassRefPtr<SVGGlyphElement> SVGGlyphElement::create(Document& document)
40 { 40 {
41 return adoptRef(new SVGGlyphElement(document)); 41 return adoptRef(new SVGGlyphElement(document));
42 } 42 }
43 43
44 void SVGGlyphElement::invalidateGlyphCache() 44 void SVGGlyphElement::invalidateGlyphCache()
45 { 45 {
46 ContainerNode* fontNode = parentNode(); 46 ContainerNode* fontNode = parentNode();
47 if (fontNode && fontNode->hasTagName(SVGNames::fontTag)) 47 if (isSVGFontElement(fontNode))
48 toSVGFontElement(fontNode)->invalidateGlyphCache(); 48 toSVGFontElement(*fontNode).invalidateGlyphCache();
49 } 49 }
50 50
51 void SVGGlyphElement::parseAttribute(const QualifiedName& name, const AtomicStri ng& value) 51 void SVGGlyphElement::parseAttribute(const QualifiedName& name, const AtomicStri ng& value)
52 { 52 {
53 if (name == SVGNames::dAttr) 53 if (name == SVGNames::dAttr)
54 invalidateGlyphCache(); 54 invalidateGlyphCache();
55 else 55 else
56 SVGElement::parseAttribute(name, value); 56 SVGElement::parseAttribute(name, value);
57 } 57 }
58 58
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 String language = fastGetAttribute(SVGNames::langAttr); 156 String language = fastGetAttribute(SVGNames::langAttr);
157 if (!language.isEmpty()) 157 if (!language.isEmpty())
158 identifier.languages = parseDelimitedString(language, ','); 158 identifier.languages = parseDelimitedString(language, ',');
159 159
160 return identifier; 160 return identifier;
161 } 161 }
162 162
163 } 163 }
164 164
165 #endif // ENABLE(SVG_FONTS) 165 #endif // ENABLE(SVG_FONTS)
OLDNEW
« no previous file with comments | « no previous file | Source/core/svg/SVGHKernElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698