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

Unified Diff: Source/core/dom/TreeScope.cpp

Issue 18228003: Remove AtomicStringImpl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
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);

Powered by Google App Engine
This is Rietveld 408576698