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

Unified Diff: Source/web/ChromeClientImpl.cpp

Issue 203263004: Remove didChangeValueInTextField(HTMLInputElement&) and textFieldDidChange(const WebInputElement&) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « Source/web/ChromeClientImpl.h ('k') | Source/web/tests/WebViewTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ChromeClientImpl.cpp
diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp
index b7e4aa55503b7206ed048ef834d72dd5cf5fc611..69b7a94002125c66872dabddc3a19aa6a43b7bdd 100644
--- a/Source/web/ChromeClientImpl.cpp
+++ b/Source/web/ChromeClientImpl.cpp
@@ -921,15 +921,6 @@ void ChromeClientImpl::forwardInputEvent(
}
}
-// FIXME: This function is to be removed once both chromium and blink changes
-// for BUG332557 are in.
-void ChromeClientImpl::didChangeValueInTextField(HTMLInputElement& inputElement)
-{
- if (!m_webView->autofillClient())
- return;
- m_webView->autofillClient()->textFieldDidChange(WebInputElement(&inputElement));
-}
-
void ChromeClientImpl::didChangeValueInTextField(HTMLFormControlElement& element)
{
if (!m_webView->autofillClient())
« no previous file with comments | « Source/web/ChromeClientImpl.h ('k') | Source/web/tests/WebViewTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698