| Index: Source/web/ChromeClientImpl.cpp
|
| diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp
|
| index 47efada7eef3593699f8a5f7d2907756119c66e0..23028366aaf8dfe84a64e583e325c10f13e61982 100644
|
| --- a/Source/web/ChromeClientImpl.cpp
|
| +++ b/Source/web/ChromeClientImpl.cpp
|
| @@ -910,11 +910,11 @@ void ChromeClientImpl::forwardInputEvent(
|
| }
|
| }
|
|
|
| -void ChromeClientImpl::didChangeValueInTextField(HTMLInputElement& inputElement)
|
| +void ChromeClientImpl::didChangeValueInTextField(HTMLFormControlElement& element)
|
| {
|
| if (!m_webView->autofillClient())
|
| return;
|
| - m_webView->autofillClient()->textFieldDidChange(WebInputElement(&inputElement));
|
| + m_webView->autofillClient()->textFieldDidChange(WebFormControlElement(&element));
|
| }
|
|
|
| void ChromeClientImpl::didEndEditingOnTextField(HTMLInputElement& inputElement)
|
|
|