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

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

Issue 19804005: Remove AtomicStringImpl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/scripts/make_names.pl ('k') | Source/core/svg/SVGStyledElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFontFaceElement.cpp
diff --git a/Source/core/svg/SVGFontFaceElement.cpp b/Source/core/svg/SVGFontFaceElement.cpp
index 00a07308cb7579a0356f3d2c2e6917340f3d72c3..4c962b1cf381cbe749a7e2b566c5fb68ecb907ee 100644
--- a/Source/core/svg/SVGFontFaceElement.cpp
+++ b/Source/core/svg/SVGFontFaceElement.cpp
@@ -67,9 +67,9 @@ static CSSPropertyID cssPropertyIdForSVGAttributeName(const QualifiedName& attrN
if (!attrName.namespaceURI().isNull())
return CSSPropertyInvalid;
- static HashMap<AtomicStringImpl*, CSSPropertyID>* propertyNameToIdMap = 0;
+ static HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap = 0;
if (!propertyNameToIdMap) {
- propertyNameToIdMap = new HashMap<AtomicStringImpl*, CSSPropertyID>;
+ propertyNameToIdMap = new HashMap<StringImpl*, CSSPropertyID>;
// This is a list of all @font-face CSS properties which are exposed as SVG XML attributes
// Those commented out are not yet supported by WebCore's style system
// mapAttributeToCSSProperty(propertyNameToIdMap, accent_heightAttr);
« no previous file with comments | « Source/core/scripts/make_names.pl ('k') | Source/core/svg/SVGStyledElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698