Index: third_party/WebKit/Source/modules/fetch/Response.idl |
diff --git a/third_party/WebKit/Source/modules/fetch/Response.idl b/third_party/WebKit/Source/modules/fetch/Response.idl |
index 2dba3d83f6cad1d22104141016b521818e1af625..89b58e3e5e74db0574452885b601c2fc36a1aa00 100644 |
--- a/third_party/WebKit/Source/modules/fetch/Response.idl |
+++ b/third_party/WebKit/Source/modules/fetch/Response.idl |
@@ -25,10 +25,9 @@ enum ResponseType { "basic", "cors", "default", "error", "opaque", "opaqueredire |
readonly attribute ByteString statusText; |
readonly attribute Headers headers; |
- [RaisesException] Response clone(); |
+ [RaisesException, CallWith=ScriptState] Response clone(); |
- [ImplementedAs=bodyWithUseCounter] readonly attribute ReadableByteStream body; |
- [RuntimeEnabled=ResponseBodyWithV8ExtraStream, CallWith=ScriptState] any v8ExtraStreamBody(); |
+ [CallWith=ScriptState, ImplementedAs=bodyWithUseCounter] readonly attribute any body; |
}; |
Response implements Body; |