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

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

Issue 180843003: Start to implement FetchEvent for ServiceWorker (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: patch for landing Created 6 years, 10 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
new file mode 100644
index 0000000000000000000000000000000000000000..85175765c8d869bc61c86ab3667c8338b23001a4
--- /dev/null
+++ b/Source/modules/serviceworkers/ResponseInit.h
@@ -0,0 +1,31 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ResponseInit_h
+#define ResponseInit_h
+
+#include "bindings/v8/Dictionary.h"
+
+namespace WebCore {
+
+struct ResponseInit {
+ explicit ResponseInit(const Dictionary& options)
+ : statusCode(200)
+ , statusText("OK")
+ {
+ options.get("statusCode", statusCode);
+ options.get("statusTest", statusText);
+ options.get("method", method);
+ options.get("headers", headers);
+ }
+
+ unsigned short statusCode;
+ String statusText;
+ String method;
+ Dictionary headers;
+};
+
+}
+
+#endif // ResponseInit_h
« no previous file with comments | « Source/modules/serviceworkers/Response.idl ('k') | Source/modules/serviceworkers/ServiceWorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698