Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1524)

Unified Diff: Source/modules/serviceworkers/Response.idl

Issue 556563002: Adding ArrayBuffer support to ServiceWorker Response and tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Style fixes Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/serviceworkers/Response.idl
diff --git a/Source/modules/serviceworkers/Response.idl b/Source/modules/serviceworkers/Response.idl
index 00fd8c05cda8bdb3b3667a74674ebd0593a7cced..bb849b7261d605bf3b45aae5092895c82937786f 100644
--- a/Source/modules/serviceworkers/Response.idl
+++ b/Source/modules/serviceworkers/Response.idl
@@ -7,10 +7,11 @@
enum ResponseType { "basic", "cors", "default", "error", "opaque" };
[
- // FIXME: Add ctors for ArrayBuffer, ArrayBufferView, FormData,
+ // FIXME: Add ctors for ArrayBufferView, FormData,
horo 2014/09/09 01:38:50 nit: // FIXME: Add ctors for ArrayBufferView,
dmurph 2014/09/09 19:06:02 Done.
// and URLSearchParams response bodies.
Constructor(ScalarValueString body, optional Dictionary responseInitDict),
Constructor(Blob? body, optional Dictionary responseInitDict),
+ Constructor(ArrayBuffer input, optional Dictionary requestInitDict),
RuntimeEnabled=ServiceWorker,
Exposed=ServiceWorker,
RaisesException=Constructor,

Powered by Google App Engine
This is Rietveld 408576698