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

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

Issue 433793002: Introducing the WebServiceWorkerCache. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix running with partial implementation Created 6 years, 4 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/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;

Powered by Google App Engine
This is Rietveld 408576698