OLD | NEW |
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 "config.h" | |
6 #include "modules/fetch/Request.h" | 5 #include "modules/fetch/Request.h" |
7 | 6 |
8 #include "bindings/core/v8/Dictionary.h" | 7 #include "bindings/core/v8/Dictionary.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/fetch/FetchUtils.h" | 10 #include "core/fetch/FetchUtils.h" |
12 #include "core/fetch/ResourceLoaderOptions.h" | 11 #include "core/fetch/ResourceLoaderOptions.h" |
13 #include "core/loader/ThreadableLoader.h" | 12 #include "core/loader/ThreadableLoader.h" |
14 #include "modules/fetch/BodyStreamBuffer.h" | 13 #include "modules/fetch/BodyStreamBuffer.h" |
15 #include "modules/fetch/DataConsumerHandleUtil.h" | 14 #include "modules/fetch/DataConsumerHandleUtil.h" |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
639 } | 638 } |
640 | 639 |
641 DEFINE_TRACE(Request) | 640 DEFINE_TRACE(Request) |
642 { | 641 { |
643 Body::trace(visitor); | 642 Body::trace(visitor); |
644 visitor->trace(m_request); | 643 visitor->trace(m_request); |
645 visitor->trace(m_headers); | 644 visitor->trace(m_headers); |
646 } | 645 } |
647 | 646 |
648 } // namespace blink | 647 } // namespace blink |
OLD | NEW |