| 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 } | 127 } |
| 128 | 128 |
| 129 void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(HTMLFormElement*) | 129 void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(HTMLFormElement*) |
| 130 { | 130 { |
| 131 } | 131 } |
| 132 | 132 |
| 133 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) | 133 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) |
| 134 { | 134 { |
| 135 } | 135 } |
| 136 | 136 |
| 137 DocumentLoader* EmptyFrameLoaderClient::createDocumentLoader(LocalFrame* frame,
const ResourceRequest& request, const SubstituteData& substituteData) | 137 DocumentLoader* EmptyFrameLoaderClient::createDocumentLoader(LocalFrame* frame,
const ResourceRequest& request, const SubstituteData& substituteData, int initia
tor) |
| 138 { | 138 { |
| 139 return DocumentLoader::create(frame, request, substituteData); | 139 return DocumentLoader::create(frame, request, substituteData); |
| 140 } | 140 } |
| 141 | 141 |
| 142 LocalFrame* EmptyFrameLoaderClient::createFrame(const FrameLoadRequest&, const A
tomicString&, HTMLFrameOwnerElement*) | 142 LocalFrame* EmptyFrameLoaderClient::createFrame(const FrameLoadRequest&, const A
tomicString&, HTMLFrameOwnerElement*) |
| 143 { | 143 { |
| 144 return nullptr; | 144 return nullptr; |
| 145 } | 145 } |
| 146 | 146 |
| 147 Widget* EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*, const KURL&, co
nst Vector<String>&, const Vector<String>&, const String&, bool, DetachedPluginP
olicy) | 147 Widget* EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*, const KURL&, co
nst Vector<String>&, const Vector<String>&, const String&, bool, DetachedPluginP
olicy) |
| (...skipping 19 matching lines...) Expand all Loading... |
| 167 { | 167 { |
| 168 return nullptr; | 168 return nullptr; |
| 169 } | 169 } |
| 170 | 170 |
| 171 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac
heHost(WebApplicationCacheHostClient*) | 171 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac
heHost(WebApplicationCacheHostClient*) |
| 172 { | 172 { |
| 173 return nullptr; | 173 return nullptr; |
| 174 } | 174 } |
| 175 | 175 |
| 176 } // namespace blink | 176 } // namespace blink |
| OLD | NEW |