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

Unified Diff: Source/core/dom/TreeScope.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/dom/TreeScope.h ('k') | Source/core/dom/shadow/SelectRuleFeatureSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/TreeScope.cpp
diff --git a/Source/core/dom/TreeScope.cpp b/Source/core/dom/TreeScope.cpp
index a5f47dd7678d236fd8d624e338c2556c70ba29fa..6afde2571392588b85f55ffa86557778864695e3 100644
--- a/Source/core/dom/TreeScope.cpp
+++ b/Source/core/dom/TreeScope.cpp
@@ -178,7 +178,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)
@@ -190,7 +190,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);
« no previous file with comments | « Source/core/dom/TreeScope.h ('k') | Source/core/dom/shadow/SelectRuleFeatureSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698