Index: third_party/WebKit/Source/modules/fetch/RequestInit.h |
diff --git a/third_party/WebKit/Source/modules/fetch/RequestInit.h b/third_party/WebKit/Source/modules/fetch/RequestInit.h |
index 593f71306e78da34ea83900828518dcef35d4f12..7fbf8e2798dd3d780d307b4173226075fa7f236e 100644 |
--- a/third_party/WebKit/Source/modules/fetch/RequestInit.h |
+++ b/third_party/WebKit/Source/modules/fetch/RequestInit.h |
@@ -9,9 +9,9 @@ |
#include "platform/heap/Handle.h" |
#include "platform/network/EncodedFormData.h" |
#include "platform/weborigin/Referrer.h" |
+#include "wtf/OwnPtr.h" |
#include "wtf/RefPtr.h" |
#include "wtf/text/WTFString.h" |
-#include <memory> |
namespace blink { |
@@ -29,7 +29,7 @@ public: |
Member<Headers> headers; |
Dictionary headersDictionary; |
String contentType; |
- std::unique_ptr<FetchDataConsumerHandle> body; |
+ OwnPtr<FetchDataConsumerHandle> body; |
Referrer referrer; |
String mode; |
String credentials; |