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

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

Issue 795323003: Move Fetch API releted code to modules/fetch. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/serviceworkers/Body.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Body.h
diff --git a/Source/modules/serviceworkers/Body.h b/Source/modules/serviceworkers/Body.h
deleted file mode 100644
index 096c45d6037b011c221b299df8f57dae25dbd261..0000000000000000000000000000000000000000
--- a/Source/modules/serviceworkers/Body.h
+++ /dev/null
@@ -1,105 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef Body_h
-#define Body_h
-
-#include "bindings/core/v8/ScriptPromise.h"
-#include "bindings/core/v8/ScriptPromiseResolver.h"
-#include "bindings/core/v8/ScriptWrappable.h"
-#include "core/dom/ActiveDOMObject.h"
-#include "core/fileapi/FileReaderLoader.h"
-#include "core/fileapi/FileReaderLoaderClient.h"
-#include "core/streams/ReadableStreamImpl.h"
-#include "platform/blob/BlobData.h"
-#include "platform/heap/Handle.h"
-#include "wtf/RefPtr.h"
-
-namespace blink {
-
-class BodyStreamBuffer;
-class ScriptState;
-
-class Body
- : public GarbageCollectedFinalized<Body>
- , public ScriptWrappable
- , public ActiveDOMObject
- , public FileReaderLoaderClient {
- DEFINE_WRAPPERTYPEINFO();
-public:
- explicit Body(ExecutionContext*);
- virtual ~Body() { }
- enum ResponseType {
- ResponseUnknown,
- ResponseAsArrayBuffer,
- ResponseAsBlob,
- ResponseAsFormData,
- ResponseAsJSON,
- ResponseAsText
- };
-
- ScriptPromise arrayBuffer(ScriptState*);
- ScriptPromise blob(ScriptState*);
- ScriptPromise formData(ScriptState*);
- ScriptPromise json(ScriptState*);
- ScriptPromise text(ScriptState*);
- ReadableStream* body();
-
- // Sets the bodyUsed flag to true. This signifies that the contents of the
- // body have been consumed and cannot be accessed again.
- void setBodyUsed();
- bool bodyUsed() const;
-
- bool streamAccessed() const;
-
- // ActiveDOMObject override.
- virtual void stop() override;
- virtual bool hasPendingActivity() const override;
-
- virtual void trace(Visitor*);
-
-protected:
- // Copy constructor for clone() implementations
- explicit Body(const Body&);
-
-private:
- class ReadableStreamSource;
- class BlobHandleReceiver;
-
- void pullSource();
- void readAllFromStream(ScriptState*);
- ScriptPromise readAsync(ScriptState*, ResponseType);
- void readAsyncFromBlob(PassRefPtr<BlobDataHandle>);
- void resolveJSON(const String&);
-
- // FileReaderLoaderClient functions.
- virtual void didStartLoading() override;
- virtual void didReceiveData() override;
- virtual void didFinishLoading() override;
- virtual void didFail(FileError::ErrorCode) override;
-
- void didBlobHandleReceiveError(PassRefPtrWillBeRawPtr<DOMException>);
-
- // We use BlobDataHandle or BodyStreamBuffer as data container of the Body.
- // BodyStreamBuffer is used only when the Response object is created by
- // fetch() API.
- // FIXME: We should seek a cleaner way to handle the data.
- virtual PassRefPtr<BlobDataHandle> blobDataHandle() const = 0;
- virtual BodyStreamBuffer* buffer() const = 0;
- virtual String contentTypeForBuffer() const = 0;
-
- void didFinishLoadingViaStream(DOMArrayBuffer*);
-
- OwnPtr<FileReaderLoader> m_loader;
- bool m_bodyUsed;
- bool m_streamAccessed;
- ResponseType m_responseType;
- RefPtr<ScriptPromiseResolver> m_resolver;
- Member<ReadableStreamSource> m_streamSource;
- Member<ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMArrayBuffer>>> m_stream;
-};
-
-} // namespace blink
-
-#endif // Body_h
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/serviceworkers/Body.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698