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

Side by Side Diff: Source/modules/serviceworkers/Response.h

Issue 478693005: Oilpan: Ship Oilpan for serviceworkers/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/FetchBodyStream.h" 10 #include "modules/serviceworkers/FetchBodyStream.h"
11 #include "modules/serviceworkers/FetchResponseData.h" 11 #include "modules/serviceworkers/FetchResponseData.h"
12 #include "modules/serviceworkers/Headers.h" 12 #include "modules/serviceworkers/Headers.h"
13 #include "platform/blob/BlobData.h" 13 #include "platform/blob/BlobData.h"
14 #include "platform/heap/Handle.h" 14 #include "platform/heap/Handle.h"
15 #include "wtf/RefCounted.h"
16 #include "wtf/RefPtr.h" 15 #include "wtf/RefPtr.h"
17 #include "wtf/text/WTFString.h" 16 #include "wtf/text/WTFString.h"
18 17
19 namespace blink { 18 namespace blink {
20 19
21 class Blob; 20 class Blob;
22 class ExceptionState; 21 class ExceptionState;
23 class ResponseInit; 22 class ResponseInit;
24 class WebServiceWorkerResponse; 23 class WebServiceWorkerResponse;
25 24
26 class Response FINAL : public RefCountedWillBeGarbageCollected<Response>, public ScriptWrappable { 25 class Response FINAL : public GarbageCollected<Response>, public ScriptWrappable {
27 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Response);
28 public: 26 public:
29 static PassRefPtrWillBeRawPtr<Response> create(Blob*, const Dictionary&, Exc eptionState&); 27 static Response* create(Blob*, const Dictionary&, ExceptionState&);
30 static PassRefPtrWillBeRawPtr<Response> create(const String&, const Dictiona ry&, ExceptionState&); 28 static Response* create(const String&, const Dictionary&, ExceptionState&);
31 static PassRefPtrWillBeRawPtr<Response> create(Blob*, const ResponseInit&, E xceptionState&); 29 static Response* create(Blob*, const ResponseInit&, ExceptionState&);
32 30
33 static PassRefPtrWillBeRawPtr<Response> create(PassRefPtrWillBeRawPtr<FetchR esponseData>); 31 static Response* create(FetchResponseData*);
34 32
35 String type() const; 33 String type() const;
36 String url() const; 34 String url() const;
37 unsigned short status() const; 35 unsigned short status() const;
38 String statusText() const; 36 String statusText() const;
39 PassRefPtrWillBeRawPtr<Headers> headers() const; 37 Headers* headers() const;
40 38
41 PassRefPtrWillBeRawPtr<FetchBodyStream> body(ExecutionContext*); 39 FetchBodyStream* body(ExecutionContext*);
42 40
43 void populateWebServiceWorkerResponse(WebServiceWorkerResponse&); 41 void populateWebServiceWorkerResponse(WebServiceWorkerResponse&);
44 42
45 void trace(Visitor*); 43 void trace(Visitor*);
46 44
47 private: 45 private:
48 Response(); 46 Response();
49 explicit Response(PassRefPtrWillBeRawPtr<FetchResponseData>); 47 explicit Response(FetchResponseData*);
50 48
51 RefPtrWillBeMember<FetchResponseData> m_response; 49 Member<FetchResponseData> m_response;
52 RefPtrWillBeMember<Headers> m_headers; 50 Member<Headers> m_headers;
53 RefPtrWillBeMember<FetchBodyStream> m_fetchBodyStream; 51 Member<FetchBodyStream> m_fetchBodyStream;
54 }; 52 };
55 53
56 } // namespace blink 54 } // namespace blink
57 55
58 #endif // Response_h 56 #endif // Response_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698