| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> |
| 3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved. |
| 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 return WTF::makeUnique<EmptyFrameScheduler>(); | 127 return WTF::makeUnique<EmptyFrameScheduler>(); |
| 128 } | 128 } |
| 129 | 129 |
| 130 NavigationPolicy EmptyLocalFrameClient::decidePolicyForNavigation( | 130 NavigationPolicy EmptyLocalFrameClient::decidePolicyForNavigation( |
| 131 const ResourceRequest&, | 131 const ResourceRequest&, |
| 132 DocumentLoader*, | 132 DocumentLoader*, |
| 133 NavigationType, | 133 NavigationType, |
| 134 NavigationPolicy, | 134 NavigationPolicy, |
| 135 bool, | 135 bool, |
| 136 bool, | 136 bool, |
| 137 HTMLFormElement*) { | 137 HTMLFormElement*, |
| 138 ContentSecurityPolicyDisposition) { |
| 138 return NavigationPolicyIgnore; | 139 return NavigationPolicyIgnore; |
| 139 } | 140 } |
| 140 | 141 |
| 141 void EmptyLocalFrameClient::dispatchWillSendSubmitEvent(HTMLFormElement*) {} | 142 void EmptyLocalFrameClient::dispatchWillSendSubmitEvent(HTMLFormElement*) {} |
| 142 | 143 |
| 143 void EmptyLocalFrameClient::dispatchWillSubmitForm(HTMLFormElement*) {} | 144 void EmptyLocalFrameClient::dispatchWillSubmitForm(HTMLFormElement*) {} |
| 144 | 145 |
| 145 DocumentLoader* EmptyLocalFrameClient::createDocumentLoader( | 146 DocumentLoader* EmptyLocalFrameClient::createDocumentLoader( |
| 146 LocalFrame* frame, | 147 LocalFrame* frame, |
| 147 const ResourceRequest& request, | 148 const ResourceRequest& request, |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 193 |
| 193 std::unique_ptr<WebApplicationCacheHost> | 194 std::unique_ptr<WebApplicationCacheHost> |
| 194 EmptyLocalFrameClient::createApplicationCacheHost( | 195 EmptyLocalFrameClient::createApplicationCacheHost( |
| 195 WebApplicationCacheHostClient*) { | 196 WebApplicationCacheHostClient*) { |
| 196 return nullptr; | 197 return nullptr; |
| 197 } | 198 } |
| 198 | 199 |
| 199 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; | 200 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; |
| 200 | 201 |
| 201 } // namespace blink | 202 } // namespace blink |
| OLD | NEW |