| Index: third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp b/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp
|
| index 0e50e73f394418cf325898bae4aa014699b3d133..df7ed7da9ea514dac347e2f5fcf35c03eec88cb7 100644
|
| --- a/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp
|
| @@ -12,7 +12,7 @@
|
| #include "modules/payments/PaymentUpdater.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
| namespace {
|
| @@ -45,7 +45,7 @@ public:
|
| ExceptionState& getExceptionState() { return m_exceptionState; }
|
|
|
| private:
|
| - OwnPtr<DummyPageHolder> m_page;
|
| + std::unique_ptr<DummyPageHolder> m_page;
|
| TrackExceptionState m_exceptionState;
|
| };
|
|
|
|
|