| Index: third_party/WebKit/Source/core/layout/LayoutThemeTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutThemeTest.cpp b/third_party/WebKit/Source/core/layout/LayoutThemeTest.cpp
|
| index 240020a89e6c6482ad81d2b62e59874415872614..f3039dfa55b6e3fe4e12d78f717dbb367d158840 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutThemeTest.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutThemeTest.cpp
|
| @@ -14,6 +14,7 @@
|
| #include "core/testing/DummyPageHolder.h"
|
| #include "platform/graphics/Color.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -24,7 +25,7 @@ protected:
|
| void setHtmlInnerHTML(const char* htmlContent);
|
|
|
| private:
|
| - OwnPtr<DummyPageHolder> m_dummyPageHolder;
|
| + std::unique_ptr<DummyPageHolder> m_dummyPageHolder;
|
| Persistent<HTMLDocument> m_document;
|
| };
|
|
|
|
|