Index: Source/core/dom/TreeScope.cpp |
diff --git a/Source/core/dom/TreeScope.cpp b/Source/core/dom/TreeScope.cpp |
index 2c447dc3ed170cec1406a68c26c656d5cb7566d9..c89b72a28beeb4f5101aafc7b8c2aa1e428614b9 100644 |
--- a/Source/core/dom/TreeScope.cpp |
+++ b/Source/core/dom/TreeScope.cpp |
@@ -177,7 +177,7 @@ Node* TreeScope::ancestorInThisScope(Node* node) const |
void TreeScope::addImageMap(HTMLMapElement* imageMap) |
{ |
- AtomicStringImpl* name = imageMap->getName().impl(); |
+ StringImpl* name = imageMap->getName().impl(); |
if (!name) |
return; |
if (!m_imageMapsByName) |
@@ -189,7 +189,7 @@ void TreeScope::removeImageMap(HTMLMapElement* imageMap) |
{ |
if (!m_imageMapsByName) |
return; |
- AtomicStringImpl* name = imageMap->getName().impl(); |
+ StringImpl* name = imageMap->getName().impl(); |
if (!name) |
return; |
m_imageMapsByName->remove(name, imageMap); |