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

Side by Side Diff: Source/modules/serviceworkers/FetchBodyStream.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 FetchBodyStream_h 5 #ifndef FetchBodyStream_h
6 #define FetchBodyStream_h 6 #define FetchBodyStream_h
7 7
8 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "bindings/core/v8/ScriptPromiseResolver.h" 9 #include "bindings/core/v8/ScriptPromiseResolver.h"
10 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
11 #include "core/dom/ActiveDOMObject.h" 11 #include "core/dom/ActiveDOMObject.h"
12 #include "core/fileapi/FileReaderLoader.h" 12 #include "core/fileapi/FileReaderLoader.h"
13 #include "core/fileapi/FileReaderLoaderClient.h" 13 #include "core/fileapi/FileReaderLoaderClient.h"
14 #include "platform/blob/BlobData.h" 14 #include "platform/blob/BlobData.h"
15 #include "platform/heap/Handle.h" 15 #include "platform/heap/Handle.h"
16 #include "wtf/RefCounted.h"
17 #include "wtf/RefPtr.h" 16 #include "wtf/RefPtr.h"
18 17
19 namespace blink { 18 namespace blink {
20 19
21 class ScriptState; 20 class ScriptState;
22 21
23 class FetchBodyStream FINAL 22 class FetchBodyStream FINAL
24 : public RefCountedWillBeGarbageCollectedFinalized<FetchBodyStream> 23 : public GarbageCollectedFinalized<FetchBodyStream>
25 , public ScriptWrappable 24 , public ScriptWrappable
26 , public ActiveDOMObject 25 , public ActiveDOMObject
27 , public FileReaderLoaderClient { 26 , public FileReaderLoaderClient {
28 public: 27 public:
29 enum ResponseType { 28 enum ResponseType {
30 ResponseAsArrayBuffer, 29 ResponseAsArrayBuffer,
31 ResponseAsBlob, 30 ResponseAsBlob,
32 ResponseAsFormData, 31 ResponseAsFormData,
33 ResponseAsJSON, 32 ResponseAsJSON,
34 ResponseAsText 33 ResponseAsText
35 }; 34 };
36 35
37 static PassRefPtrWillBeRawPtr<FetchBodyStream> create(ExecutionContext*, Pas sRefPtr<BlobDataHandle>); 36 static FetchBodyStream* create(ExecutionContext*, PassRefPtr<BlobDataHandle> );
38 37
39 ScriptPromise asArrayBuffer(ScriptState*); 38 ScriptPromise asArrayBuffer(ScriptState*);
40 ScriptPromise asBlob(ScriptState*); 39 ScriptPromise asBlob(ScriptState*);
41 ScriptPromise asFormData(ScriptState*); 40 ScriptPromise asFormData(ScriptState*);
42 ScriptPromise asJSON(ScriptState*); 41 ScriptPromise asJSON(ScriptState*);
43 ScriptPromise asText(ScriptState*); 42 ScriptPromise asText(ScriptState*);
44 43
45 // ActiveDOMObject override. 44 // ActiveDOMObject override.
46 virtual void stop() OVERRIDE; 45 virtual void stop() OVERRIDE;
47 virtual bool hasPendingActivity() const OVERRIDE; 46 virtual bool hasPendingActivity() const OVERRIDE;
(...skipping 14 matching lines...) Expand all
62 RefPtr<BlobDataHandle> m_blobDataHandle; 61 RefPtr<BlobDataHandle> m_blobDataHandle;
63 OwnPtr<FileReaderLoader> m_loader; 62 OwnPtr<FileReaderLoader> m_loader;
64 bool m_hasRead; 63 bool m_hasRead;
65 ResponseType m_responseType; 64 ResponseType m_responseType;
66 RefPtr<ScriptPromiseResolver> m_resolver; 65 RefPtr<ScriptPromiseResolver> m_resolver;
67 }; 66 };
68 67
69 } // namespace blink 68 } // namespace blink
70 69
71 #endif // FetchBodyStream_h 70 #endif // FetchBodyStream_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698