| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 return NavigationPolicyIgnore; | 136 return NavigationPolicyIgnore; |
| 137 } | 137 } |
| 138 | 138 |
| 139 void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(HTMLFormElement*) {} | 139 void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(HTMLFormElement*) {} |
| 140 | 140 |
| 141 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) {} | 141 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) {} |
| 142 | 142 |
| 143 DocumentLoader* EmptyFrameLoaderClient::createDocumentLoader( | 143 DocumentLoader* EmptyFrameLoaderClient::createDocumentLoader( |
| 144 LocalFrame* frame, | 144 LocalFrame* frame, |
| 145 const ResourceRequest& request, | 145 const ResourceRequest& request, |
| 146 const SubstituteData& substituteData) { | 146 const SubstituteData& substituteData, |
| 147 return DocumentLoader::create(frame, request, substituteData); | 147 ClientRedirectPolicy clientRedirectPolicy) { |
| 148 return DocumentLoader::create(frame, request, substituteData, |
| 149 clientRedirectPolicy); |
| 148 } | 150 } |
| 149 | 151 |
| 150 LocalFrame* EmptyFrameLoaderClient::createFrame(const FrameLoadRequest&, | 152 LocalFrame* EmptyFrameLoaderClient::createFrame(const FrameLoadRequest&, |
| 151 const AtomicString&, | 153 const AtomicString&, |
| 152 HTMLFrameOwnerElement*) { | 154 HTMLFrameOwnerElement*) { |
| 153 return nullptr; | 155 return nullptr; |
| 154 } | 156 } |
| 155 | 157 |
| 156 Widget* EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*, | 158 Widget* EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*, |
| 157 const KURL&, | 159 const KURL&, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 179 return nullptr; | 181 return nullptr; |
| 180 } | 182 } |
| 181 | 183 |
| 182 std::unique_ptr<WebApplicationCacheHost> | 184 std::unique_ptr<WebApplicationCacheHost> |
| 183 EmptyFrameLoaderClient::createApplicationCacheHost( | 185 EmptyFrameLoaderClient::createApplicationCacheHost( |
| 184 WebApplicationCacheHostClient*) { | 186 WebApplicationCacheHostClient*) { |
| 185 return nullptr; | 187 return nullptr; |
| 186 } | 188 } |
| 187 | 189 |
| 188 } // namespace blink | 190 } // namespace blink |
| OLD | NEW |