OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015, Google Inc. All rights reserved. | 2 * Copyright (c) 2015, Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "core/loader/FrameFetchContext.h" | 31 #include "core/loader/FrameFetchContext.h" |
32 | 32 |
33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
34 #include "core/fetch/FetchInitiatorInfo.h" | |
35 #include "core/fetch/MockResource.h" | |
36 #include "core/fetch/UniqueIdentifier.h" | |
37 #include "core/frame/FrameHost.h" | 34 #include "core/frame/FrameHost.h" |
38 #include "core/frame/FrameOwner.h" | 35 #include "core/frame/FrameOwner.h" |
39 #include "core/frame/FrameTypes.h" | 36 #include "core/frame/FrameTypes.h" |
40 #include "core/frame/FrameView.h" | 37 #include "core/frame/FrameView.h" |
41 #include "core/frame/Settings.h" | 38 #include "core/frame/Settings.h" |
42 #include "core/html/HTMLIFrameElement.h" | 39 #include "core/html/HTMLIFrameElement.h" |
43 #include "core/loader/DocumentLoader.h" | 40 #include "core/loader/DocumentLoader.h" |
44 #include "core/loader/EmptyClients.h" | 41 #include "core/loader/EmptyClients.h" |
45 #include "core/page/Page.h" | 42 #include "core/page/Page.h" |
46 #include "core/testing/DummyPageHolder.h" | 43 #include "core/testing/DummyPageHolder.h" |
| 44 #include "platform/loader/fetch/FetchInitiatorInfo.h" |
| 45 #include "platform/loader/fetch/MockResource.h" |
| 46 #include "platform/loader/fetch/UniqueIdentifier.h" |
47 #include "platform/network/ResourceRequest.h" | 47 #include "platform/network/ResourceRequest.h" |
48 #include "platform/weborigin/KURL.h" | 48 #include "platform/weborigin/KURL.h" |
49 #include "public/platform/WebAddressSpace.h" | 49 #include "public/platform/WebAddressSpace.h" |
50 #include "public/platform/WebCachePolicy.h" | 50 #include "public/platform/WebCachePolicy.h" |
51 #include "public/platform/WebInsecureRequestPolicy.h" | 51 #include "public/platform/WebInsecureRequestPolicy.h" |
52 #include "testing/gmock/include/gmock/gmock.h" | 52 #include "testing/gmock/include/gmock/gmock.h" |
53 #include "testing/gtest/include/gtest/gtest.h" | 53 #include "testing/gtest/include/gtest/gtest.h" |
54 #include <memory> | 54 #include <memory> |
55 | 55 |
56 namespace blink { | 56 namespace blink { |
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 fetchContext->addAdditionalRequestHeaders(mainRequest, FetchMainResource); | 803 fetchContext->addAdditionalRequestHeaders(mainRequest, FetchMainResource); |
804 EXPECT_EQ(test.isExternalExpectation, mainRequest.isExternalRequest()); | 804 EXPECT_EQ(test.isExternalExpectation, mainRequest.isExternalRequest()); |
805 | 805 |
806 ResourceRequest subRequest(test.url); | 806 ResourceRequest subRequest(test.url); |
807 fetchContext->addAdditionalRequestHeaders(subRequest, FetchSubresource); | 807 fetchContext->addAdditionalRequestHeaders(subRequest, FetchSubresource); |
808 EXPECT_EQ(test.isExternalExpectation, subRequest.isExternalRequest()); | 808 EXPECT_EQ(test.isExternalExpectation, subRequest.isExternalRequest()); |
809 } | 809 } |
810 } | 810 } |
811 | 811 |
812 } // namespace blink | 812 } // namespace blink |
OLD | NEW |