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 717c9c6ab6a377b228e4d8fc716b54851b87560b..5bb0cecf1d29e38d9b9df3c45f39013263bfd1a5 100644 |
--- a/third_party/WebKit/Source/web/WebDataSourceImpl.h |
+++ b/third_party/WebKit/Source/web/WebDataSourceImpl.h |
@@ -37,8 +37,9 @@ |
#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 { |
@@ -83,7 +84,7 @@ private: |
mutable WrappedResourceRequest m_requestWrapper; |
mutable WrappedResourceResponse m_responseWrapper; |
- std::unique_ptr<ExtraData> m_extraData; |
+ OwnPtr<ExtraData> m_extraData; |
}; |
} // namespace blink |