Index: Source/modules/serviceworkers/Response.h |
diff --git a/Source/modules/serviceworkers/Response.h b/Source/modules/serviceworkers/Response.h |
index 01e1a637b168758f743e0c16c54481ae724c5701..8c44f638ac5aa21046f9b7c735589aa0ec50ea9f 100644 |
--- a/Source/modules/serviceworkers/Response.h |
+++ b/Source/modules/serviceworkers/Response.h |
@@ -33,6 +33,8 @@ public: |
static PassRefPtrWillBeRawPtr<Response> create(PassRefPtrWillBeRawPtr<FetchResponseData>); |
dominicc (has gone to gerrit)
2014/08/11 01:40:41
Maybe tighten up the vertical whitespace here?
gavinp
2014/08/13 23:25:23
Done.
|
+ static PassRefPtrWillBeRawPtr<Response> create(const WebServiceWorkerResponse&); |
+ |
String type() const; |
String url() const; |
unsigned short status() const; |
@@ -48,6 +50,7 @@ public: |
private: |
Response(); |
explicit Response(PassRefPtrWillBeRawPtr<FetchResponseData>); |
+ explicit Response(const WebServiceWorkerResponse&); |
RefPtrWillBeMember<FetchResponseData> m_response; |
RefPtrWillBeMember<Headers> m_headers; |