| Index: Source/core/rendering/svg/SVGPathData.cpp
|
| diff --git a/Source/core/rendering/svg/SVGPathData.cpp b/Source/core/rendering/svg/SVGPathData.cpp
|
| index aa69c3702926127405a105732bf4353e651f2f03..b15fe3df90f452ab97064dc092700c50316646cb 100644
|
| --- a/Source/core/rendering/svg/SVGPathData.cpp
|
| +++ b/Source/core/rendering/svg/SVGPathData.cpp
|
| @@ -146,9 +146,9 @@ void updatePathFromGraphicsElement(SVGElement* element, Path& path)
|
| ASSERT(path.isEmpty());
|
|
|
| typedef void (*PathUpdateFunction)(SVGElement*, Path&);
|
| - static HashMap<AtomicStringImpl*, PathUpdateFunction>* map = 0;
|
| + static HashMap<StringImpl*, PathUpdateFunction>* map = 0;
|
| if (!map) {
|
| - map = new HashMap<AtomicStringImpl*, PathUpdateFunction>;
|
| + map = new HashMap<StringImpl*, PathUpdateFunction>;
|
| map->set(SVGNames::circleTag.localName().impl(), updatePathFromCircleElement);
|
| map->set(SVGNames::ellipseTag.localName().impl(), updatePathFromEllipseElement);
|
| map->set(SVGNames::lineTag.localName().impl(), updatePathFromLineElement);
|
|
|