| Index: third_party/WebKit/Source/web/WebDataSourceImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebDataSourceImpl.h b/third_party/WebKit/Source/web/WebDataSourceImpl.h
|
| index 5bb0cecf1d29e38d9b9df3c45f39013263bfd1a5..717c9c6ab6a377b228e4d8fc716b54851b87560b 100644
|
| --- a/third_party/WebKit/Source/web/WebDataSourceImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebDataSourceImpl.h
|
| @@ -37,9 +37,8 @@
|
| #include "platform/heap/Handle.h"
|
| #include "platform/weborigin/KURL.h"
|
| #include "public/web/WebDataSource.h"
|
| -#include "wtf/OwnPtr.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| #include "wtf/Vector.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -84,7 +83,7 @@ private:
|
| mutable WrappedResourceRequest m_requestWrapper;
|
| mutable WrappedResourceResponse m_responseWrapper;
|
|
|
| - OwnPtr<ExtraData> m_extraData;
|
| + std::unique_ptr<ExtraData> m_extraData;
|
| };
|
|
|
| } // namespace blink
|
|
|