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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 PassOwnPtrWillBeRawPtr<PluginPlaceholder> EmptyFrameLoaderClient::createPluginPl
aceholder(Document&, const KURL&, const Vector<String>& paramNames, const Vector
<String>& paramValues, const String& mimeType, bool loadManually) | 123 PassOwnPtrWillBeRawPtr<PluginPlaceholder> EmptyFrameLoaderClient::createPluginPl
aceholder(Document&, const KURL&, const Vector<String>& paramNames, const Vector
<String>& paramValues, const String& mimeType, bool loadManually) |
124 { | 124 { |
125 return nullptr; | 125 return nullptr; |
126 } | 126 } |
127 | 127 |
128 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl
ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&
, bool, DetachedPluginPolicy) | 128 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl
ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&
, bool, DetachedPluginPolicy) |
129 { | 129 { |
130 return nullptr; | 130 return nullptr; |
131 } | 131 } |
132 | 132 |
133 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createJavaAppletWidget(HT
MLAppletElement*, const KURL&, const Vector<String>&, const Vector<String>&) | |
134 { | |
135 return nullptr; | |
136 } | |
137 | |
138 PassOwnPtr<WebMediaPlayer> EmptyFrameLoaderClient::createWebMediaPlayer(HTMLMedi
aElement&, const WebURL&, WebMediaPlayerClient*) | 133 PassOwnPtr<WebMediaPlayer> EmptyFrameLoaderClient::createWebMediaPlayer(HTMLMedi
aElement&, const WebURL&, WebMediaPlayerClient*) |
139 { | 134 { |
140 return nullptr; | 135 return nullptr; |
141 } | 136 } |
142 | 137 |
143 void EmptyTextCheckerClient::requestCheckingOfString(PassRefPtrWillBeRawPtr<Text
CheckingRequest>) | 138 void EmptyTextCheckerClient::requestCheckingOfString(PassRefPtrWillBeRawPtr<Text
CheckingRequest>) |
144 { | 139 { |
145 } | 140 } |
146 | 141 |
147 void EmptyFrameLoaderClient::didRequestAutocomplete(HTMLFormElement*) | 142 void EmptyFrameLoaderClient::didRequestAutocomplete(HTMLFormElement*) |
148 { | 143 { |
149 } | 144 } |
150 | 145 |
151 v8::Local<v8::Value> EmptyFrameLoaderClient::createTestInterface(const AtomicStr
ing& name) | 146 v8::Local<v8::Value> EmptyFrameLoaderClient::createTestInterface(const AtomicStr
ing& name) |
152 { | 147 { |
153 return v8::Local<v8::Value>(); | 148 return v8::Local<v8::Value>(); |
154 } | 149 } |
155 | 150 |
156 PassOwnPtr<WebServiceWorkerProvider> EmptyFrameLoaderClient::createServiceWorker
Provider() | 151 PassOwnPtr<WebServiceWorkerProvider> EmptyFrameLoaderClient::createServiceWorker
Provider() |
157 { | 152 { |
158 return nullptr; | 153 return nullptr; |
159 } | 154 } |
160 | 155 |
161 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac
heHost(WebApplicationCacheHostClient*) | 156 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac
heHost(WebApplicationCacheHostClient*) |
162 { | 157 { |
163 return nullptr; | 158 return nullptr; |
164 } | 159 } |
165 | 160 |
166 } // namespace blink | 161 } // namespace blink |
OLD | NEW |