Index: third_party/WebKit/Source/core/loader/EmptyClients.cpp |
diff --git a/third_party/WebKit/Source/core/loader/EmptyClients.cpp b/third_party/WebKit/Source/core/loader/EmptyClients.cpp |
index 977d16b07fcf8cc20892c8c0429654784c948cb3..bfe806b3b432d1025bc25c202cc77ed64b7e5d5d 100644 |
--- a/third_party/WebKit/Source/core/loader/EmptyClients.cpp |
+++ b/third_party/WebKit/Source/core/loader/EmptyClients.cpp |
@@ -181,6 +181,11 @@ WebRemotePlaybackClient* EmptyLocalFrameClient::createWebRemotePlaybackClient( |
return nullptr; |
} |
+TextCheckerClient& EmptyLocalFrameClient::textCheckerClient() const { |
+ DEFINE_STATIC_LOCAL(EmptyTextCheckerClient, client, ()); |
+ return client; |
+} |
+ |
void EmptyTextCheckerClient::requestCheckingOfString(TextCheckingRequest*) {} |
void EmptyTextCheckerClient::cancelAllPendingRequests() {} |