| Index: third_party/WebKit/public/web/WebAXObject.h
|
| diff --git a/third_party/WebKit/public/web/WebAXObject.h b/third_party/WebKit/public/web/WebAXObject.h
|
| index 9bd99ee2707fa910ef1f47b8846555c4d42eba6b..57259bb51e2f95ad3cb7d37094c8a8b6ae2fa01c 100644
|
| --- a/third_party/WebKit/public/web/WebAXObject.h
|
| +++ b/third_party/WebKit/public/web/WebAXObject.h
|
| @@ -33,10 +33,10 @@
|
|
|
| #include "../platform/WebCommon.h"
|
| #include "../platform/WebPoint.h"
|
| -#include "../platform/WebPrivateOwnPtr.h"
|
| #include "../platform/WebPrivatePtr.h"
|
| #include "../platform/WebVector.h"
|
| #include "WebAXEnums.h"
|
| +#include <memory>
|
|
|
| #if BLINK_IMPLEMENTATION
|
| namespace WTF { template <typename T> class PassRefPtr; }
|
| @@ -68,7 +68,7 @@ public:
|
| BLINK_EXPORT WebAXObject root() const;
|
|
|
| private:
|
| - WebPrivateOwnPtr<ScopedAXObjectCache> m_private;
|
| + std::unique_ptr<ScopedAXObjectCache> m_private;
|
| };
|
|
|
| // A container for passing around a reference to AXObject.
|
|
|