| Index: third_party/WebKit/Source/core/html/forms/SearchInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/SearchInputType.cpp b/third_party/WebKit/Source/core/html/forms/SearchInputType.cpp
|
| index 8731c690fbe4c74d4055739aa7a662884d4d684c..93aa0aa47a2631d971be8964a3addc1ee5f2c0ad 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/SearchInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/SearchInputType.cpp
|
| @@ -131,14 +131,14 @@ bool SearchInputType::searchEventsShouldBeDispatched() const {
|
| return element().hasAttribute(incrementalAttr);
|
| }
|
|
|
| -void SearchInputType::didSetValueByUserEdit(ValueChangeState state) {
|
| +void SearchInputType::didSetValueByUserEdit() {
|
| updateCancelButtonVisibility();
|
|
|
| // If the incremental attribute is set, then dispatch the search event
|
| if (searchEventsShouldBeDispatched())
|
| startSearchEventTimer();
|
|
|
| - TextFieldInputType::didSetValueByUserEdit(state);
|
| + TextFieldInputType::didSetValueByUserEdit();
|
| }
|
|
|
| void SearchInputType::updateView() {
|
|
|