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

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

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 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
« no previous file with comments | « Source/modules/serviceworkers/Request.h ('k') | Source/modules/serviceworkers/ServiceWorker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" 15 #include "wtf/RefCounted.h"
16 #include "wtf/RefPtr.h" 16 #include "wtf/RefPtr.h"
17 #include "wtf/text/WTFString.h" 17 #include "wtf/text/WTFString.h"
18 18
19 namespace blink { 19 namespace blink {
20 20
21 class Blob; 21 class Blob;
22 class ExceptionState; 22 class ExceptionState;
23 class ResponseInit; 23 class ResponseInit;
24 class WebServiceWorkerResponse; 24 class WebServiceWorkerResponse;
25 25
26 class Response FINAL : public RefCountedWillBeGarbageCollected<Response>, public ScriptWrappable { 26 class Response FINAL : public RefCountedWillBeGarbageCollected<Response>, public ScriptWrappable {
27 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Response); 27 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Response);
28 DEFINE_WRAPPERTYPEINFO();
28 public: 29 public:
29 static PassRefPtrWillBeRawPtr<Response> create(Blob*, const Dictionary&, Exc eptionState&); 30 static PassRefPtrWillBeRawPtr<Response> create(Blob*, const Dictionary&, Exc eptionState&);
30 static PassRefPtrWillBeRawPtr<Response> create(const String&, const Dictiona ry&, ExceptionState&); 31 static PassRefPtrWillBeRawPtr<Response> create(const String&, const Dictiona ry&, ExceptionState&);
31 static PassRefPtrWillBeRawPtr<Response> create(Blob*, const ResponseInit&, E xceptionState&); 32 static PassRefPtrWillBeRawPtr<Response> create(Blob*, const ResponseInit&, E xceptionState&);
32 33
33 static PassRefPtrWillBeRawPtr<Response> create(PassRefPtrWillBeRawPtr<FetchR esponseData>); 34 static PassRefPtrWillBeRawPtr<Response> create(PassRefPtrWillBeRawPtr<FetchR esponseData>);
34 35
35 String type() const; 36 String type() const;
36 String url() const; 37 String url() const;
37 unsigned short status() const; 38 unsigned short status() const;
(...skipping 11 matching lines...) Expand all
49 explicit Response(PassRefPtrWillBeRawPtr<FetchResponseData>); 50 explicit Response(PassRefPtrWillBeRawPtr<FetchResponseData>);
50 51
51 RefPtrWillBeMember<FetchResponseData> m_response; 52 RefPtrWillBeMember<FetchResponseData> m_response;
52 RefPtrWillBeMember<Headers> m_headers; 53 RefPtrWillBeMember<Headers> m_headers;
53 RefPtrWillBeMember<FetchBodyStream> m_fetchBodyStream; 54 RefPtrWillBeMember<FetchBodyStream> m_fetchBodyStream;
54 }; 55 };
55 56
56 } // namespace blink 57 } // namespace blink
57 58
58 #endif // Response_h 59 #endif // Response_h
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/Request.h ('k') | Source/modules/serviceworkers/ServiceWorker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698