| Index: third_party/WebKit/Source/core/html/HTMLAreaElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLAreaElement.h b/third_party/WebKit/Source/core/html/HTMLAreaElement.h
|
| index 1a85d80ed03ae1302d73394844bda459aba85ff8..c92e20c140828c81495500b0059ca3e80546fa2d 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLAreaElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLAreaElement.h
|
| @@ -26,6 +26,7 @@
|
| #include "core/CoreExport.h"
|
| #include "core/html/HTMLAnchorElement.h"
|
| #include "platform/geometry/LayoutRect.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -67,7 +68,7 @@ private:
|
| enum Shape { Default, Poly, Rect, Circle };
|
| void invalidateCachedPath();
|
|
|
| - mutable OwnPtr<Path> m_path;
|
| + mutable std::unique_ptr<Path> m_path;
|
| Vector<double> m_coords;
|
| Shape m_shape;
|
| };
|
|
|