| Index: third_party/WebKit/Source/core/dom/AXObjectCache.h
|
| diff --git a/third_party/WebKit/Source/core/dom/AXObjectCache.h b/third_party/WebKit/Source/core/dom/AXObjectCache.h
|
| index 21c2541667a0ed371825671f777926b903e3ab85..be51633e666f095c81d78d5772da2ae4e2a27ce1 100644
|
| --- a/third_party/WebKit/Source/core/dom/AXObjectCache.h
|
| +++ b/third_party/WebKit/Source/core/dom/AXObjectCache.h
|
| @@ -28,7 +28,6 @@
|
|
|
| #include "core/CoreExport.h"
|
| #include "core/dom/Document.h"
|
| -#include <memory>
|
|
|
| typedef unsigned AXID;
|
|
|
| @@ -155,7 +154,7 @@ class CORE_EXPORT ScopedAXObjectCache {
|
| USING_FAST_MALLOC(ScopedAXObjectCache);
|
| WTF_MAKE_NONCOPYABLE(ScopedAXObjectCache);
|
| public:
|
| - static std::unique_ptr<ScopedAXObjectCache> create(Document&);
|
| + static PassOwnPtr<ScopedAXObjectCache> create(Document&);
|
| ~ScopedAXObjectCache();
|
|
|
| AXObjectCache* get();
|
|
|