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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 PassRefPtrWillBeRawPtr<DocumentLoader> EmptyFrameLoaderClient::createDocumentLoa
der(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& sub
stituteData) | 141 PassRefPtrWillBeRawPtr<DocumentLoader> EmptyFrameLoaderClient::createDocumentLoa
der(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& sub
stituteData) |
142 { | 142 { |
143 return DocumentLoader::create(frame, request, substituteData); | 143 return DocumentLoader::create(frame, request, substituteData); |
144 } | 144 } |
145 | 145 |
146 PassRefPtrWillBeRawPtr<LocalFrame> EmptyFrameLoaderClient::createFrame(const Fra
meLoadRequest&, const AtomicString&, HTMLFrameOwnerElement*) | 146 PassRefPtrWillBeRawPtr<LocalFrame> EmptyFrameLoaderClient::createFrame(const Fra
meLoadRequest&, const AtomicString&, HTMLFrameOwnerElement*) |
147 { | 147 { |
148 return nullptr; | 148 return nullptr; |
149 } | 149 } |
150 | 150 |
| 151 WebFramelet* EmptyFrameLoaderClient::createFramelet(const KURL&, HTMLFrameletEle
ment*) |
| 152 { |
| 153 return nullptr; |
| 154 } |
| 155 |
151 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl
ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&
, bool, DetachedPluginPolicy) | 156 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl
ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&
, bool, DetachedPluginPolicy) |
152 { | 157 { |
153 return nullptr; | 158 return nullptr; |
154 } | 159 } |
155 | 160 |
156 PassOwnPtr<WebMediaPlayer> EmptyFrameLoaderClient::createWebMediaPlayer(HTMLMedi
aElement&, const WebURL&, WebMediaPlayerClient*) | 161 PassOwnPtr<WebMediaPlayer> EmptyFrameLoaderClient::createWebMediaPlayer(HTMLMedi
aElement&, const WebURL&, WebMediaPlayerClient*) |
157 { | 162 { |
158 return nullptr; | 163 return nullptr; |
159 } | 164 } |
160 | 165 |
(...skipping 19 matching lines...) Expand all Loading... |
180 { | 185 { |
181 return nullptr; | 186 return nullptr; |
182 } | 187 } |
183 | 188 |
184 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac
heHost(WebApplicationCacheHostClient*) | 189 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac
heHost(WebApplicationCacheHostClient*) |
185 { | 190 { |
186 return nullptr; | 191 return nullptr; |
187 } | 192 } |
188 | 193 |
189 } // namespace blink | 194 } // namespace blink |
OLD | NEW |