| 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 7ec269b6236e6a85eadb1ad5d06e79d6a77a30e3..97b1f0f7dadd8b80965d4558492002bf50e10b8d 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/SearchInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/SearchInputType.cpp
|
| @@ -48,7 +48,10 @@ using namespace HTMLNames;
|
|
|
| inline SearchInputType::SearchInputType(HTMLInputElement& element)
|
| : BaseTextInputType(element),
|
| - m_searchEventTimer(this, &SearchInputType::searchEventTimerFired) {}
|
| + m_searchEventTimer(
|
| + TaskRunnerHelper::get(TaskType::UserInteraction, &element.document()),
|
| + this,
|
| + &SearchInputType::searchEventTimerFired) {}
|
|
|
| InputType* SearchInputType::create(HTMLInputElement& element) {
|
| return new SearchInputType(element);
|
|
|