| Index: trunk/Source/core/dom/TreeScope.cpp
|
| ===================================================================
|
| --- trunk/Source/core/dom/TreeScope.cpp (revision 153372)
|
| +++ trunk/Source/core/dom/TreeScope.cpp (working copy)
|
| @@ -177,7 +177,7 @@
|
|
|
| void TreeScope::addImageMap(HTMLMapElement* imageMap)
|
| {
|
| - StringImpl* name = imageMap->getName().impl();
|
| + AtomicStringImpl* name = imageMap->getName().impl();
|
| if (!name)
|
| return;
|
| if (!m_imageMapsByName)
|
| @@ -189,7 +189,7 @@
|
| {
|
| if (!m_imageMapsByName)
|
| return;
|
| - StringImpl* name = imageMap->getName().impl();
|
| + AtomicStringImpl* name = imageMap->getName().impl();
|
| if (!name)
|
| return;
|
| m_imageMapsByName->remove(name, imageMap);
|
|
|