| Index: third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp b/third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp
|
| index bffa584cba6dca4b3035d5966957d4203668315f..f2d8fbe08a9ed99cf919b9e72944b9fbb265abce 100644
|
| --- a/third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/credentialmanager/PasswordCredentialTest.cpp
|
| @@ -16,6 +16,7 @@
|
| #include "core/testing/DummyPageHolder.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "wtf/text/StringBuilder.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -45,7 +46,7 @@ protected:
|
| }
|
|
|
| private:
|
| - OwnPtr<DummyPageHolder> m_dummyPageHolder;
|
| + std::unique_ptr<DummyPageHolder> m_dummyPageHolder;
|
| Persistent<HTMLDocument> m_document;
|
| };
|
|
|
|
|