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

Unified Diff: Source/modules/fetch/FetchFormDataConsumerHandle.h

Issue 1265413002: Introduce FetchFormDataConsumerHandle. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/fetch/FetchFormDataConsumerHandle.h
diff --git a/Source/modules/fetch/FetchFormDataConsumerHandle.h b/Source/modules/fetch/FetchFormDataConsumerHandle.h
new file mode 100644
index 0000000000000000000000000000000000000000..968a7f1c5ba371a38008022bfde716d607f77ccf
--- /dev/null
+++ b/Source/modules/fetch/FetchFormDataConsumerHandle.h
@@ -0,0 +1,63 @@
+// Copyright 2015 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 FetchFormDataConsumerHandle_h
+#define FetchFormDataConsumerHandle_h
+
+#include "core/dom/DOMArrayBuffer.h"
+#include "core/dom/DOMArrayBufferView.h"
+#include "modules/ModulesExport.h"
+#include "modules/fetch/FetchBlobDataConsumerHandle.h"
+#include "modules/fetch/FetchDataConsumerHandle.h"
+#include "platform/blob/BlobData.h"
+#include "platform/network/FormData.h"
+#include "wtf/Forward.h"
+#include "wtf/PassOwnPtr.h"
+#include "wtf/PassRefPtr.h"
+#include "wtf/RefPtr.h"
+#include "wtf/ThreadSafeRefCounted.h"
+
+namespace blink {
+
+class ExecutionContext;
+
+// FetchFormDataConsumerHandle is a handle made from a FormData. It provides
+// drainAsFormData in the associated Reader.
+class MODULES_EXPORT FetchFormDataConsumerHandle final : public FetchDataConsumerHandle {
+ WTF_MAKE_NONCOPYABLE(FetchFormDataConsumerHandle);
+public:
+ static PassOwnPtr<FetchDataConsumerHandle> create(const String& body);
+ static PassOwnPtr<FetchDataConsumerHandle> create(PassRefPtr<DOMArrayBuffer> body);
+ static PassOwnPtr<FetchDataConsumerHandle> create(PassRefPtr<DOMArrayBufferView> body);
+ static PassOwnPtr<FetchDataConsumerHandle> create(const void* data, size_t);
+ static PassOwnPtr<FetchDataConsumerHandle> create(ExecutionContext*, PassRefPtr<FormData> body);
+ // Use FetchBlobDataConsumerHandle for blobs.
+
+ ~FetchFormDataConsumerHandle() override;
+
+ static PassOwnPtr<FetchDataConsumerHandle> createForTest(
+ ExecutionContext*,
+ PassRefPtr<FormData> body,
+ FetchBlobDataConsumerHandle::LoaderFactory*);
+
+private:
+ class Context;
+ class SimpleContext;
+ class ComplexContext;
+ class ReaderImpl;
+
+ explicit FetchFormDataConsumerHandle(const String& body);
+ FetchFormDataConsumerHandle(const void*, size_t);
+ FetchFormDataConsumerHandle(ExecutionContext*, const PassRefPtr<FormData> body, FetchBlobDataConsumerHandle::LoaderFactory* = nullptr);
+
+ Reader* obtainReaderInternal(Client*) override;
+
+ const char* debugName() const override { return "FetchFormDataConsumerHandle"; }
+
+ RefPtr<Context> m_context;
+};
+
+} // namespace blink
+
+#endif // FetchFormDataConsumerHandle_h
« no previous file with comments | « Source/modules/fetch/FetchDataConsumerHandle.h ('k') | Source/modules/fetch/FetchFormDataConsumerHandle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698