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

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

Issue 1171913003: **** [WIP] Blink-side: Implement FetchBlobDataConsumerHandle **** (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Clean up. Created 5 years, 6 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
« no previous file with comments | « Source/modules/fetch/DataConsumerTeeTest.cpp ('k') | Source/modules/fetch/FetchBlobDataConsumerHandle.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/fetch/FetchBlobDataConsumerHandle.h
diff --git a/Source/modules/fetch/FetchBlobDataConsumerHandle.h b/Source/modules/fetch/FetchBlobDataConsumerHandle.h
new file mode 100644
index 0000000000000000000000000000000000000000..670b83ab20cc92865cbb46519fe8f45ff3c059e4
--- /dev/null
+++ b/Source/modules/fetch/FetchBlobDataConsumerHandle.h
@@ -0,0 +1,42 @@
+// 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 FetchBlobDataConsumerHandle_h
+#define FetchBlobDataConsumerHandle_h
+
+#include "core/fetch/ResourceLoaderOptions.h"
+#include "core/loader/ThreadableLoader.h"
+#include "modules/fetch/FetchDataConsumerHandle.h"
+#include "platform/blob/BlobData.h"
+#include "wtf/PassOwnPtr.h"
+#include "wtf/PassRefPtr.h"
+#include "wtf/RefPtr.h"
+
+namespace blink {
+
+class ExecutionContext;
+class FetchBlobDataConsumerHandle final : public FetchDataConsumerHandle {
+public:
+ class LoaderFactory : public GarbageCollected<LoaderFactory> {
+ public:
+ virtual PassRefPtr<ThreadableLoader> create(ExecutionContext&, ThreadableLoaderClient*, const ResourceRequest&, const ThreadableLoaderOptions&, const ResourceLoaderOptions&) = 0;
+ DEFINE_INLINE_VIRTUAL_TRACE() { }
+ };
+
+ static PassOwnPtr<FetchDataConsumerHandle> create(ExecutionContext*, PassRefPtr<BlobDataHandle>);
+ static PassOwnPtr<FetchDataConsumerHandle> create(ExecutionContext*, PassRefPtr<BlobDataHandle>, LoaderFactory*);
+
+private:
+ FetchBlobDataConsumerHandle(ExecutionContext*, PassRefPtr<BlobDataHandle>, LoaderFactory*);
+ Reader* obtainReaderInternal(Client*) override;
+
+ virtual const char* debugName() const override { return "FetchBlobDataConsumerHandle"; }
+
+ class ReaderContext;
+ RefPtr<ReaderContext> m_readerContext;
+};
+
+} // namespace blink
+
+#endif // FetchBlobDataConsumerHandle_h
« no previous file with comments | « Source/modules/fetch/DataConsumerTeeTest.cpp ('k') | Source/modules/fetch/FetchBlobDataConsumerHandle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698