| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006, 2010 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef FrameLoadRequest_h | 26 #ifndef FrameLoadRequest_h |
| 27 #define FrameLoadRequest_h | 27 #define FrameLoadRequest_h |
| 28 | 28 |
| 29 #include "core/dom/Document.h" | 29 #include "core/dom/Document.h" |
| 30 #include "core/events/Event.h" | 30 #include "core/events/Event.h" |
| 31 #include "core/fetch/ResourceLoaderOptions.h" | |
| 32 #include "core/fetch/SubstituteData.h" | |
| 33 #include "core/loader/FrameLoaderTypes.h" | 31 #include "core/loader/FrameLoaderTypes.h" |
| 32 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 33 #include "platform/loader/fetch/SubstituteData.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class HTMLFormElement; | 37 class HTMLFormElement; |
| 38 class ResourceRequest; | 38 class ResourceRequest; |
| 39 class SubstituteData; | 39 class SubstituteData; |
| 40 | 40 |
| 41 struct CORE_EXPORT FrameLoadRequest { | 41 struct CORE_EXPORT FrameLoadRequest { |
| 42 STACK_ALLOCATED(); | 42 STACK_ALLOCATED(); |
| 43 | 43 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 Member<Event> m_triggeringEvent; | 116 Member<Event> m_triggeringEvent; |
| 117 Member<HTMLFormElement> m_form; | 117 Member<HTMLFormElement> m_form; |
| 118 ShouldSendReferrer m_shouldSendReferrer; | 118 ShouldSendReferrer m_shouldSendReferrer; |
| 119 ShouldSetOpener m_shouldSetOpener; | 119 ShouldSetOpener m_shouldSetOpener; |
| 120 ContentSecurityPolicyDisposition m_shouldCheckMainWorldContentSecurityPolicy; | 120 ContentSecurityPolicyDisposition m_shouldCheckMainWorldContentSecurityPolicy; |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 } // namespace blink | 123 } // namespace blink |
| 124 | 124 |
| 125 #endif // FrameLoadRequest_h | 125 #endif // FrameLoadRequest_h |
| OLD | NEW |