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

Unified Diff: Source/modules/serviceworkers/ResponseInit.h

Issue 287363004: ServiceWorker: support Response.{status,statusText,headers} [blink] (2/3) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed comments Created 6 years, 7 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/ResponseInit.h
diff --git a/Source/modules/serviceworkers/ResponseInit.h b/Source/modules/serviceworkers/ResponseInit.h
index 85175765c8d869bc61c86ab3667c8338b23001a4..93c4db82fca82b9dcc53afc69b85b0c09c95b7e7 100644
--- a/Source/modules/serviceworkers/ResponseInit.h
+++ b/Source/modules/serviceworkers/ResponseInit.h
@@ -6,24 +6,24 @@
#define ResponseInit_h
#include "bindings/v8/Dictionary.h"
+#include "modules/serviceworkers/HeaderMap.h"
+#include "wtf/RefPtr.h"
namespace WebCore {
struct ResponseInit {
explicit ResponseInit(const Dictionary& options)
- : statusCode(200)
+ : status(200)
, statusText("OK")
{
- options.get("statusCode", statusCode);
- options.get("statusTest", statusText);
- options.get("method", method);
+ options.get("status", status);
+ options.get("statusText", statusText);
options.get("headers", headers);
}
- unsigned short statusCode;
+ unsigned short status;
String statusText;
- String method;
- Dictionary headers;
+ RefPtr<HeaderMap> headers;
};
}

Powered by Google App Engine
This is Rietveld 408576698