| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index aa0d259600d14a7e74878ef5cfdde09cbb5f19a4..893390934cc77d1f499a34c8c50af45497c85263 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -2227,7 +2227,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();
|
| }
|
|
|
|
|