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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 WebRemotePlaybackClient* EmptyLocalFrameClient::CreateWebRemotePlaybackClient( | 190 WebRemotePlaybackClient* EmptyLocalFrameClient::CreateWebRemotePlaybackClient( |
191 HTMLMediaElement&) { | 191 HTMLMediaElement&) { |
192 return nullptr; | 192 return nullptr; |
193 } | 193 } |
194 | 194 |
195 TextCheckerClient& EmptyLocalFrameClient::GetTextCheckerClient() const { | 195 TextCheckerClient& EmptyLocalFrameClient::GetTextCheckerClient() const { |
196 DEFINE_STATIC_LOCAL(EmptyTextCheckerClient, client, ()); | 196 DEFINE_STATIC_LOCAL(EmptyTextCheckerClient, client, ()); |
197 return client; | 197 return client; |
198 } | 198 } |
199 | 199 |
| 200 Frame* EmptyLocalFrameClient::FindFrame(const AtomicString& name) const { |
| 201 return nullptr; |
| 202 } |
| 203 |
200 void EmptyTextCheckerClient::RequestCheckingOfString(TextCheckingRequest*) {} | 204 void EmptyTextCheckerClient::RequestCheckingOfString(TextCheckingRequest*) {} |
201 | 205 |
202 void EmptyTextCheckerClient::CancelAllPendingRequests() {} | 206 void EmptyTextCheckerClient::CancelAllPendingRequests() {} |
203 | 207 |
204 std::unique_ptr<WebServiceWorkerProvider> | 208 std::unique_ptr<WebServiceWorkerProvider> |
205 EmptyLocalFrameClient::CreateServiceWorkerProvider() { | 209 EmptyLocalFrameClient::CreateServiceWorkerProvider() { |
206 return nullptr; | 210 return nullptr; |
207 } | 211 } |
208 | 212 |
209 ContentSettingsClient& EmptyLocalFrameClient::GetContentSettingsClient() { | 213 ContentSettingsClient& EmptyLocalFrameClient::GetContentSettingsClient() { |
210 return content_settings_client_; | 214 return content_settings_client_; |
211 } | 215 } |
212 | 216 |
213 std::unique_ptr<WebApplicationCacheHost> | 217 std::unique_ptr<WebApplicationCacheHost> |
214 EmptyLocalFrameClient::CreateApplicationCacheHost( | 218 EmptyLocalFrameClient::CreateApplicationCacheHost( |
215 WebApplicationCacheHostClient*) { | 219 WebApplicationCacheHostClient*) { |
216 return nullptr; | 220 return nullptr; |
217 } | 221 } |
218 | 222 |
219 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; | 223 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; |
220 | 224 |
221 } // namespace blink | 225 } // namespace blink |
OLD | NEW |