| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 const WebMediaPlayerSource&, | 174 const WebMediaPlayerSource&, |
| 175 WebMediaPlayerClient*) { | 175 WebMediaPlayerClient*) { |
| 176 return nullptr; | 176 return nullptr; |
| 177 } | 177 } |
| 178 | 178 |
| 179 WebRemotePlaybackClient* EmptyLocalFrameClient::createWebRemotePlaybackClient( | 179 WebRemotePlaybackClient* EmptyLocalFrameClient::createWebRemotePlaybackClient( |
| 180 HTMLMediaElement&) { | 180 HTMLMediaElement&) { |
| 181 return nullptr; | 181 return nullptr; |
| 182 } | 182 } |
| 183 | 183 |
| 184 TextCheckerClient& EmptyLocalFrameClient::textCheckerClient() const { |
| 185 DEFINE_STATIC_LOCAL(EmptyTextCheckerClient, client, ()); |
| 186 return client; |
| 187 } |
| 188 |
| 184 void EmptyTextCheckerClient::requestCheckingOfString(TextCheckingRequest*) {} | 189 void EmptyTextCheckerClient::requestCheckingOfString(TextCheckingRequest*) {} |
| 185 | 190 |
| 186 void EmptyTextCheckerClient::cancelAllPendingRequests() {} | 191 void EmptyTextCheckerClient::cancelAllPendingRequests() {} |
| 187 | 192 |
| 188 std::unique_ptr<WebServiceWorkerProvider> | 193 std::unique_ptr<WebServiceWorkerProvider> |
| 189 EmptyLocalFrameClient::createServiceWorkerProvider() { | 194 EmptyLocalFrameClient::createServiceWorkerProvider() { |
| 190 return nullptr; | 195 return nullptr; |
| 191 } | 196 } |
| 192 | 197 |
| 193 std::unique_ptr<WebApplicationCacheHost> | 198 std::unique_ptr<WebApplicationCacheHost> |
| 194 EmptyLocalFrameClient::createApplicationCacheHost( | 199 EmptyLocalFrameClient::createApplicationCacheHost( |
| 195 WebApplicationCacheHostClient*) { | 200 WebApplicationCacheHostClient*) { |
| 196 return nullptr; | 201 return nullptr; |
| 197 } | 202 } |
| 198 | 203 |
| 199 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; | 204 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; |
| 200 | 205 |
| 201 } // namespace blink | 206 } // namespace blink |
| OLD | NEW |