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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/FetchBlobDataConsumerHandle.h

Issue 2104283002: Tidy CrossThreadCopier.h inclusion. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/CrossThreadCopier.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 FetchBlobDataConsumerHandle_h 5 #ifndef FetchBlobDataConsumerHandle_h
6 #define FetchBlobDataConsumerHandle_h 6 #define FetchBlobDataConsumerHandle_h
7 7
8 #include "core/fetch/ResourceLoaderOptions.h" 8 #include "core/fetch/ResourceLoaderOptions.h"
9 #include "core/loader/ThreadableLoader.h" 9 #include "core/loader/ThreadableLoader.h"
10 #include "modules/ModulesExport.h" 10 #include "modules/ModulesExport.h"
11 #include "modules/fetch/FetchDataConsumerHandle.h" 11 #include "modules/fetch/FetchDataConsumerHandle.h"
12 #include "platform/blob/BlobData.h" 12 #include "platform/blob/BlobData.h"
13 #include "platform/heap/Handle.h"
13 #include "wtf/PassRefPtr.h" 14 #include "wtf/PassRefPtr.h"
14 #include "wtf/RefPtr.h" 15 #include "wtf/RefPtr.h"
15 #include <memory> 16 #include <memory>
16 17
17 namespace blink { 18 namespace blink {
18 19
19 class ExecutionContext; 20 class ExecutionContext;
20 // A FetchBlobDataConsumerHandle is created from a blob handle and it will 21 // A FetchBlobDataConsumerHandle is created from a blob handle and it will
21 // return a valid handle from drainAsBlobDataHandle as much as possible. 22 // return a valid handle from drainAsBlobDataHandle as much as possible.
22 class MODULES_EXPORT FetchBlobDataConsumerHandle final : public FetchDataConsume rHandle { 23 class MODULES_EXPORT FetchBlobDataConsumerHandle final : public FetchDataConsume rHandle {
(...skipping 19 matching lines...) Expand all
42 43
43 const char* debugName() const override { return "FetchBlobDataConsumerHandle "; } 44 const char* debugName() const override { return "FetchBlobDataConsumerHandle "; }
44 45
45 class ReaderContext; 46 class ReaderContext;
46 RefPtr<ReaderContext> m_readerContext; 47 RefPtr<ReaderContext> m_readerContext;
47 }; 48 };
48 49
49 } // namespace blink 50 } // namespace blink
50 51
51 #endif // FetchBlobDataConsumerHandle_h 52 #endif // FetchBlobDataConsumerHandle_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/CrossThreadCopier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698