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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 PassRefPtrWillBeRawPtr<LocalFrame> EmptyFrameLoaderClient::createFrame(const KUR
L&, const AtomicString&, HTMLFrameOwnerElement*) | 126 PassRefPtrWillBeRawPtr<LocalFrame> EmptyFrameLoaderClient::createFrame(const KUR
L&, const AtomicString&, HTMLFrameOwnerElement*) |
127 { | 127 { |
128 return nullptr; | 128 return nullptr; |
129 } | 129 } |
130 | 130 |
131 PassOwnPtrWillBeRawPtr<PluginPlaceholder> EmptyFrameLoaderClient::createPluginPl
aceholder(Document&, const KURL&, const Vector<String>& paramNames, const Vector
<String>& paramValues, const String& mimeType, bool loadManually) | 131 PassOwnPtrWillBeRawPtr<PluginPlaceholder> EmptyFrameLoaderClient::createPluginPl
aceholder(Document&, const KURL&, const Vector<String>& paramNames, const Vector
<String>& paramValues, const String& mimeType, bool loadManually) |
132 { | 132 { |
133 return nullptr; | 133 return nullptr; |
134 } | 134 } |
135 | 135 |
136 PassRefPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*, cons
t KURL&, const Vector<String>&, const Vector<String>&, const String&, bool, Deta
chedPluginPolicy) | 136 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl
ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&
, bool, DetachedPluginPolicy) |
137 { | 137 { |
138 return nullptr; | 138 return nullptr; |
139 } | 139 } |
140 | 140 |
141 PassRefPtr<Widget> EmptyFrameLoaderClient::createJavaAppletWidget(HTMLAppletElem
ent*, const KURL&, const Vector<String>&, const Vector<String>&) | 141 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createJavaAppletWidget(HT
MLAppletElement*, const KURL&, const Vector<String>&, const Vector<String>&) |
142 { | 142 { |
143 return nullptr; | 143 return nullptr; |
144 } | 144 } |
145 | 145 |
146 void EmptyTextCheckerClient::requestCheckingOfString(PassRefPtrWillBeRawPtr<Text
CheckingRequest>) | 146 void EmptyTextCheckerClient::requestCheckingOfString(PassRefPtrWillBeRawPtr<Text
CheckingRequest>) |
147 { | 147 { |
148 } | 148 } |
149 | 149 |
150 void EmptyFrameLoaderClient::didRequestAutocomplete(HTMLFormElement*) | 150 void EmptyFrameLoaderClient::didRequestAutocomplete(HTMLFormElement*) |
151 { | 151 { |
152 } | 152 } |
153 | 153 |
154 PassOwnPtr<blink::WebServiceWorkerProvider> EmptyFrameLoaderClient::createServic
eWorkerProvider() | 154 PassOwnPtr<blink::WebServiceWorkerProvider> EmptyFrameLoaderClient::createServic
eWorkerProvider() |
155 { | 155 { |
156 return nullptr; | 156 return nullptr; |
157 } | 157 } |
158 | 158 |
159 PassOwnPtr<blink::WebApplicationCacheHost> EmptyFrameLoaderClient::createApplica
tionCacheHost(blink::WebApplicationCacheHostClient*) | 159 PassOwnPtr<blink::WebApplicationCacheHost> EmptyFrameLoaderClient::createApplica
tionCacheHost(blink::WebApplicationCacheHostClient*) |
160 { | 160 { |
161 return nullptr; | 161 return nullptr; |
162 } | 162 } |
163 | 163 |
164 PassOwnPtr<StorageNamespace> EmptyStorageClient::createSessionStorageNamespace() | 164 PassOwnPtr<StorageNamespace> EmptyStorageClient::createSessionStorageNamespace() |
165 { | 165 { |
166 return nullptr; | 166 return nullptr; |
167 } | 167 } |
168 | 168 |
169 } | 169 } |
OLD | NEW |