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