Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(302)

Unified Diff: third_party/WebKit/Source/web/ChromeClientImpl.cpp

Issue 2650113004: [WIP] Add support for Android SuggestionSpans when editing text (Closed)
Patch Set: Remove logging statements, fix copyright years in new files Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698