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

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

Issue 2856173004: Clean up bindings/core/v8 (Part 5) (Closed)
Patch Set: Fix build Created 3 years, 7 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 "bindings/core/v8/V8PrivateProperty.h"
9 #include "core/dom/Document.h" 8 #include "core/dom/Document.h"
10 #include "core/dom/ExecutionContext.h" 9 #include "core/dom/ExecutionContext.h"
11 #include "core/loader/ThreadableLoader.h" 10 #include "core/loader/ThreadableLoader.h"
12 #include "modules/fetch/BodyStreamBuffer.h" 11 #include "modules/fetch/BodyStreamBuffer.h"
13 #include "modules/fetch/FetchManager.h" 12 #include "modules/fetch/FetchManager.h"
14 #include "modules/fetch/RequestInit.h" 13 #include "modules/fetch/RequestInit.h"
15 #include "platform/HTTPNames.h" 14 #include "platform/HTTPNames.h"
16 #include "platform/RuntimeEnabledFeatures.h" 15 #include "platform/RuntimeEnabledFeatures.h"
16 #include "platform/bindings/V8PrivateProperty.h"
17 #include "platform/loader/fetch/FetchUtils.h" 17 #include "platform/loader/fetch/FetchUtils.h"
18 #include "platform/loader/fetch/ResourceLoaderOptions.h" 18 #include "platform/loader/fetch/ResourceLoaderOptions.h"
19 #include "platform/loader/fetch/ResourceRequest.h" 19 #include "platform/loader/fetch/ResourceRequest.h"
20 #include "platform/network/HTTPParsers.h" 20 #include "platform/network/HTTPParsers.h"
21 #include "platform/weborigin/OriginAccessEntry.h" 21 #include "platform/weborigin/OriginAccessEntry.h"
22 #include "platform/weborigin/Referrer.h" 22 #include "platform/weborigin/Referrer.h"
23 #include "public/platform/WebURLRequest.h" 23 #include "public/platform/WebURLRequest.h"
24 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" 24 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h"
25 25
26 namespace blink { 26 namespace blink {
(...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 .Set(request.As<v8::Object>(), body_buffer); 767 .Set(request.As<v8::Object>(), body_buffer);
768 } 768 }
769 769
770 DEFINE_TRACE(Request) { 770 DEFINE_TRACE(Request) {
771 Body::Trace(visitor); 771 Body::Trace(visitor);
772 visitor->Trace(request_); 772 visitor->Trace(request_);
773 visitor->Trace(headers_); 773 visitor->Trace(headers_);
774 } 774 }
775 775
776 } // namespace blink 776 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/FetchManager.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