| Index: Source/modules/serviceworkers/ResponseInit.h
|
| diff --git a/Source/modules/serviceworkers/ResponseInit.h b/Source/modules/serviceworkers/ResponseInit.h
|
| index 7cef14212341bbc2644567b4dc15f678ddb9664c..bda31bd5aa5efa060d908307e065a9ca6b326fbe 100644
|
| --- a/Source/modules/serviceworkers/ResponseInit.h
|
| +++ b/Source/modules/serviceworkers/ResponseInit.h
|
| @@ -6,7 +6,7 @@
|
| #define ResponseInit_h
|
|
|
| #include "bindings/core/v8/Dictionary.h"
|
| -#include "modules/serviceworkers/Headers.h"
|
| +#include "modules/serviceworkers/HeaderMap.h"
|
| #include "wtf/RefPtr.h"
|
|
|
| namespace WebCore {
|
| @@ -25,15 +25,11 @@
|
| // FIXME: Spec uses ByteString for statusText. http://crbug.com/347426
|
| options.get("statusText", statusText);
|
| options.get("headers", headers);
|
| - if (!headers) {
|
| - options.get("headers", headersDictionary);
|
| - }
|
| }
|
|
|
| unsigned short status;
|
| String statusText;
|
| - RefPtr<Headers> headers;
|
| - Dictionary headersDictionary;
|
| + RefPtr<HeaderMap> headers;
|
| };
|
|
|
| }
|
|
|