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

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

Issue 2227403002: Remove blink::ReadableStream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 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 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/FetchRequestData.h" 5 #include "modules/fetch/FetchRequestData.h"
6 6
7 #include "bindings/core/v8/ScriptState.h" 7 #include "bindings/core/v8/ScriptState.h"
8 #include "core/dom/ExecutionContext.h" 8 #include "core/dom/ExecutionContext.h"
9 #include "core/fetch/ResourceLoaderOptions.h" 9 #include "core/fetch/ResourceLoaderOptions.h"
10 #include "core/loader/ThreadableLoader.h" 10 #include "core/loader/ThreadableLoader.h"
11 #include "core/streams/ReadableStream.h"
12 #include "modules/credentialmanager/PasswordCredential.h" 11 #include "modules/credentialmanager/PasswordCredential.h"
13 #include "modules/fetch/BodyStreamBuffer.h" 12 #include "modules/fetch/BodyStreamBuffer.h"
14 #include "modules/fetch/DataConsumerHandleUtil.h" 13 #include "modules/fetch/DataConsumerHandleUtil.h"
15 #include "modules/fetch/FetchBlobDataConsumerHandle.h" 14 #include "modules/fetch/FetchBlobDataConsumerHandle.h"
16 #include "modules/fetch/FetchHeaderList.h" 15 #include "modules/fetch/FetchHeaderList.h"
17 #include "platform/HTTPNames.h" 16 #include "platform/HTTPNames.h"
18 #include "platform/network/ResourceRequest.h" 17 #include "platform/network/ResourceRequest.h"
19 #include "public/platform/WebURLRequest.h" 18 #include "public/platform/WebURLRequest.h"
20 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" 19 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h"
21 20
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 m_attachedCredential.clear(); 114 m_attachedCredential.clear();
116 } 115 }
117 116
118 DEFINE_TRACE(FetchRequestData) 117 DEFINE_TRACE(FetchRequestData)
119 { 118 {
120 visitor->trace(m_buffer); 119 visitor->trace(m_buffer);
121 visitor->trace(m_headerList); 120 visitor->trace(m_headerList);
122 } 121 }
123 122
124 } // namespace blink 123 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/BodyStreamBufferTest.cpp ('k') | third_party/WebKit/Source/modules/fetch/Response.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698