Index: Source/modules/fetch/RequestInit.h |
diff --git a/Source/modules/fetch/RequestInit.h b/Source/modules/fetch/RequestInit.h |
index ef7dc4dae6178596f4a50681beed6d556f5a912d..38d3cfb89de7cfac48ee64ca27bbcc1c45ed00f4 100644 |
--- a/Source/modules/fetch/RequestInit.h |
+++ b/Source/modules/fetch/RequestInit.h |
@@ -7,13 +7,14 @@ |
#include "bindings/core/v8/Dictionary.h" |
#include "platform/heap/Handle.h" |
+#include "wtf/OwnPtr.h" |
#include "wtf/RefPtr.h" |
#include "wtf/text/WTFString.h" |
namespace blink { |
-class BlobDataHandle; |
class ExceptionState; |
+class FetchDataConsumerHandle; |
class Headers; |
// FIXME: Use IDL dictionary instead of this class. |
@@ -25,7 +26,8 @@ public: |
String method; |
Member<Headers> headers; |
Dictionary headersDictionary; |
- RefPtr<BlobDataHandle> bodyBlobHandle; |
+ String contentType; |
+ OwnPtr<FetchDataConsumerHandle> body; |
String mode; |
String credentials; |
String redirect; |