| Index: third_party/WebKit/Source/modules/fetch/RequestTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/RequestTest.cpp b/third_party/WebKit/Source/modules/fetch/RequestTest.cpp
|
| index cb56d27946ad5f645ce49b07857f1586119892b6..a264e1eb13af6e3f64d377b140e52cb401f04ddf 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/RequestTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/RequestTest.cpp
|
| @@ -14,6 +14,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "wtf/HashMap.h"
|
| #include "wtf/text/WTFString.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
| namespace {
|
| @@ -27,7 +28,7 @@ public:
|
| ExecutionContext* getExecutionContext() { return getScriptState()->getExecutionContext(); }
|
|
|
| private:
|
| - OwnPtr<DummyPageHolder> m_page;
|
| + std::unique_ptr<DummyPageHolder> m_page;
|
| };
|
|
|
| TEST_F(ServiceWorkerRequestTest, FromString)
|
|
|