| Index: third_party/WebKit/Source/core/html/HTMLFormControlElementTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLFormControlElementTest.cpp
|
| index f4c621c4b4f7031aa124a5eb670f5687667e9b48..1f9acf5e67de34fd4a931f098d3a0fe84ebc350d 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFormControlElementTest.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFormControlElementTest.cpp
|
| @@ -11,6 +11,7 @@
|
| #include "core/loader/EmptyClients.h"
|
| #include "core/testing/DummyPageHolder.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -22,7 +23,7 @@ protected:
|
| HTMLDocument& document() const { return *m_document; }
|
|
|
| private:
|
| - OwnPtr<DummyPageHolder> m_dummyPageHolder;
|
| + std::unique_ptr<DummyPageHolder> m_dummyPageHolder;
|
| Persistent<HTMLDocument> m_document;
|
| };
|
|
|
|
|