| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index d85fa40c092391c457b3c51c2864d547ea6f4d7e..0e35e59529d222df0b3d2807b96d5c8a1bb67f29 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -2235,7 +2235,7 @@ AXObjectCache* Document::axObjectCache() const
|
|
|
| ASSERT(&cacheOwner == this || !m_axObjectCache);
|
| if (!cacheOwner.m_axObjectCache)
|
| - cacheOwner.m_axObjectCache = adoptPtr(AXObjectCache::create(cacheOwner));
|
| + cacheOwner.m_axObjectCache = AXObjectCache::create(cacheOwner);
|
| return cacheOwner.m_axObjectCache.get();
|
| }
|
|
|
|
|