Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 [ | |
| 6 Constructor(optional Dictionary responseInitDict), | |
| 7 RuntimeEnabled=ServiceWorker, | |
| 8 GlobalContext=ServiceWorkerGlobalScope, | |
| 9 ] interface Response { | |
| 10 attribute unsigned short statusCode; | |
| 11 | |
| 12 // FIXME: Spec uses ByteString for these. We must perform the DOMString -> B yteString conversion manually, | |
|
kinuko
2014/02/26 05:42:49
We don't have ByteString support anywhere yet?
falken
2014/02/27 06:45:09
I don't think so. XHR code does it manually. I fil
| |
| 13 // as described at http://heycam.github.io/webidl/#es-ByteString | |
| 14 attribute DOMString statusText; | |
| 15 attribute DOMString method; | |
| 16 | |
| 17 // FIXME: Spec will eventually define "HeaderMap" interface. | |
|
kinuko
2014/02/26 05:42:49
I think HeaderMap just inherits MapClass, which is
falken
2014/02/27 06:45:09
I updated the FIXME to be a bit more descriptive a
| |
| 18 getter Dictionary headers(); | |
| 19 setter void headers(Dictionary items); | |
| 20 | |
| 21 // FIXME: Implement the following: | |
| 22 // attribute DOMString url; | |
| 23 // Promise<Blob> toBlob(); | |
| 24 }; | |
| OLD | NEW |