| Index: third_party/WebKit/Source/core/html/HTMLAreaElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp b/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp
|
| index 3e266c3a10069fd7543f567713f85212eacb38dc..4b7111959c94e270bfd5a8b20f771f614d548911 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp
|
| @@ -166,7 +166,7 @@ Path HTMLAreaElement::getPath(const LayoutObject* containerObject) const {
|
| }
|
|
|
| // Cache the original path, not depending on containerObject.
|
| - m_path = wrapUnique(new Path(path));
|
| + m_path = makeUnique<Path>(path);
|
| }
|
|
|
| // Zoom the path into coordinates of the container object.
|
|
|