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