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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/Request.cpp

Issue 2342233002: Remove Fetch[Blob|FormData]ConsumerHandle (Closed)
Patch Set: rebase Created 4 years, 3 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
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 #include "modules/fetch/Request.h" 5 #include "modules/fetch/Request.h"
6 6
7 #include "bindings/core/v8/Dictionary.h" 7 #include "bindings/core/v8/Dictionary.h"
8 #include "core/dom/Document.h" 8 #include "core/dom/Document.h"
9 #include "core/dom/ExecutionContext.h" 9 #include "core/dom/ExecutionContext.h"
10 #include "core/fetch/FetchUtils.h" 10 #include "core/fetch/FetchUtils.h"
11 #include "core/fetch/ResourceLoaderOptions.h" 11 #include "core/fetch/ResourceLoaderOptions.h"
12 #include "core/loader/ThreadableLoader.h" 12 #include "core/loader/ThreadableLoader.h"
13 #include "modules/fetch/BodyStreamBuffer.h" 13 #include "modules/fetch/BodyStreamBuffer.h"
14 #include "modules/fetch/DataConsumerHandleUtil.h" 14 #include "modules/fetch/DataConsumerHandleUtil.h"
15 #include "modules/fetch/FetchBlobDataConsumerHandle.h"
16 #include "modules/fetch/FetchManager.h" 15 #include "modules/fetch/FetchManager.h"
17 #include "modules/fetch/RequestInit.h" 16 #include "modules/fetch/RequestInit.h"
18 #include "platform/HTTPNames.h" 17 #include "platform/HTTPNames.h"
19 #include "platform/RuntimeEnabledFeatures.h" 18 #include "platform/RuntimeEnabledFeatures.h"
20 #include "platform/network/HTTPParsers.h" 19 #include "platform/network/HTTPParsers.h"
21 #include "platform/network/ResourceRequest.h" 20 #include "platform/network/ResourceRequest.h"
22 #include "platform/weborigin/OriginAccessEntry.h" 21 #include "platform/weborigin/OriginAccessEntry.h"
23 #include "platform/weborigin/Referrer.h" 22 #include "platform/weborigin/Referrer.h"
24 #include "public/platform/WebURLRequest.h" 23 #include "public/platform/WebURLRequest.h"
25 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" 24 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h"
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 } 691 }
693 692
694 DEFINE_TRACE(Request) 693 DEFINE_TRACE(Request)
695 { 694 {
696 Body::trace(visitor); 695 Body::trace(visitor);
697 visitor->trace(m_request); 696 visitor->trace(m_request);
698 visitor->trace(m_headers); 697 visitor->trace(m_headers);
699 } 698 }
700 699
701 } // namespace blink 700 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/FetchRequestData.cpp ('k') | third_party/WebKit/Source/modules/fetch/RequestInit.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698