Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp |
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
index 3f3e86d6a8bfb7f67bb8d131e45c4c149ed5cd0d..f33a29d5e060f76c0a77e25802425e7f632954c0 100644 |
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
@@ -1067,6 +1067,11 @@ void ChromeClientImpl::didAssociateFormControlsAfterLoad(LocalFrame* frame) { |
webframe->autofillClient()->didAssociateFormControlsDynamically(); |
} |
+void ChromeClientImpl::handlePotentialTextSuggestionTap() { |
+ if (m_webView->client()) |
+ m_webView->client()->handlePotentialTextSuggestionTap(); |
+} |
+ |
void ChromeClientImpl::resetInputMethod() { |
if (m_webView->client()) |
m_webView->client()->resetInputMethod(); |