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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 | 114 |
115 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) | 115 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) |
116 { | 116 { |
117 } | 117 } |
118 | 118 |
119 PassRefPtr<DocumentLoader> EmptyFrameLoaderClient::createDocumentLoader(LocalFra
me* frame, const ResourceRequest& request, const SubstituteData& substituteData) | 119 PassRefPtr<DocumentLoader> EmptyFrameLoaderClient::createDocumentLoader(LocalFra
me* frame, const ResourceRequest& request, const SubstituteData& substituteData) |
120 { | 120 { |
121 return DocumentLoader::create(frame, request, substituteData); | 121 return DocumentLoader::create(frame, request, substituteData); |
122 } | 122 } |
123 | 123 |
124 PassRefPtrWillBeRawPtr<LocalFrame> EmptyFrameLoaderClient::createFrame(const KUR
L&, const AtomicString&, HTMLFrameOwnerElement*, ContentSecurityPolicyDispositio
n) | 124 PassRefPtrWillBeRawPtr<LocalFrame> EmptyFrameLoaderClient::createFrame(const KUR
L&, const AtomicString&, HTMLFrameOwnerElement*, ContentSecurityPolicyDispositio
n, SandboxFlags) |
125 { | 125 { |
126 return nullptr; | 126 return nullptr; |
127 } | 127 } |
128 | 128 |
129 PassOwnPtrWillBeRawPtr<PluginPlaceholder> EmptyFrameLoaderClient::createPluginPl
aceholder(Document&, const KURL&, const Vector<String>& paramNames, const Vector
<String>& paramValues, const String& mimeType, bool loadManually) | 129 PassOwnPtrWillBeRawPtr<PluginPlaceholder> EmptyFrameLoaderClient::createPluginPl
aceholder(Document&, const KURL&, const Vector<String>& paramNames, const Vector
<String>& paramValues, const String& mimeType, bool loadManually) |
130 { | 130 { |
131 return nullptr; | 131 return nullptr; |
132 } | 132 } |
133 | 133 |
134 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl
ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&
, bool, DetachedPluginPolicy) | 134 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl
ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&
, bool, DetachedPluginPolicy) |
(...skipping 23 matching lines...) Expand all Loading... |
158 { | 158 { |
159 return nullptr; | 159 return nullptr; |
160 } | 160 } |
161 | 161 |
162 PassOwnPtr<StorageNamespace> EmptyStorageClient::createSessionStorageNamespace() | 162 PassOwnPtr<StorageNamespace> EmptyStorageClient::createSessionStorageNamespace() |
163 { | 163 { |
164 return nullptr; | 164 return nullptr; |
165 } | 165 } |
166 | 166 |
167 } | 167 } |
OLD | NEW |