OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef Response_h | 5 #ifndef Response_h |
6 #define Response_h | 6 #define Response_h |
7 | 7 |
8 #include "bindings/core/v8/Dictionary.h" | 8 #include "bindings/core/v8/Dictionary.h" |
9 #include "bindings/core/v8/ScriptWrappable.h" | 9 #include "bindings/core/v8/ScriptWrappable.h" |
10 #include "modules/serviceworkers/FetchResponseData.h" | 10 #include "modules/serviceworkers/HeaderMap.h" |
11 #include "modules/serviceworkers/Headers.h" | |
12 #include "platform/blob/BlobData.h" | 11 #include "platform/blob/BlobData.h" |
13 #include "wtf/RefCounted.h" | 12 #include "wtf/RefCounted.h" |
14 #include "wtf/RefPtr.h" | 13 #include "wtf/RefPtr.h" |
15 #include "wtf/text/WTFString.h" | 14 #include "wtf/text/WTFString.h" |
16 | 15 |
17 namespace blink { class WebServiceWorkerResponse; } | 16 namespace blink { class WebServiceWorkerResponse; } |
18 | 17 |
19 namespace WebCore { | 18 namespace WebCore { |
20 | 19 |
21 class Blob; | 20 class Blob; |
22 class ExceptionState; | |
23 struct ResponseInit; | 21 struct ResponseInit; |
24 | 22 |
25 class Response FINAL : public RefCounted<Response>, public ScriptWrappable { | 23 class Response FINAL : public ScriptWrappable, public RefCounted<Response> { |
26 public: | 24 public: |
27 static PassRefPtr<Response> create(Blob*, const Dictionary&, ExceptionState&
); | 25 static PassRefPtr<Response> create(Blob*, const Dictionary&); |
28 static PassRefPtr<Response> create(Blob*, const ResponseInit&, ExceptionStat
e&); | 26 static PassRefPtr<Response> create(Blob*, const ResponseInit&); |
29 | |
30 static PassRefPtr<Response> create(PassRefPtr<FetchResponseData>); | |
31 ~Response() { }; | 27 ~Response() { }; |
32 | 28 |
33 String type() const; | 29 unsigned short status() const { return m_status; } |
34 String url() const; | 30 void setStatus(unsigned short value) { m_status = value; } |
35 unsigned short status() const; | 31 |
36 String statusText() const; | 32 String statusText() const { return m_statusText; } |
37 PassRefPtr<Headers> headers() const; | 33 void setStatusText(const String& value) { m_statusText = value; } |
| 34 |
| 35 PassRefPtr<HeaderMap> headers() const; |
38 | 36 |
39 void populateWebServiceWorkerResponse(blink::WebServiceWorkerResponse&); | 37 void populateWebServiceWorkerResponse(blink::WebServiceWorkerResponse&); |
40 | 38 |
41 private: | 39 private: |
42 Response(); | 40 Response(PassRefPtr<BlobDataHandle>, const ResponseInit&); |
43 Response(PassRefPtr<FetchResponseData>); | 41 unsigned short m_status; |
44 | 42 String m_statusText; |
45 RefPtr<FetchResponseData> m_response; | 43 RefPtr<HeaderMap> m_headers; |
46 RefPtr<Headers> m_headers; | 44 RefPtr<BlobDataHandle> m_blobDataHandle; |
47 // FIXME: Support FetchBodyStream. | |
48 }; | 45 }; |
49 | 46 |
50 } // namespace WebCore | 47 } // namespace WebCore |
51 | 48 |
52 #endif // Response_h | 49 #endif // Response_h |
OLD | NEW |