| Index: third_party/WebKit/Source/web/PopupMenuImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/PopupMenuImpl.cpp b/third_party/WebKit/Source/web/PopupMenuImpl.cpp
|
| index c15d291ad05d05385d0144379865f9bfe99414f3..866d1c702ea8fd339b9a48734017502dea4b8636 100644
|
| --- a/third_party/WebKit/Source/web/PopupMenuImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/PopupMenuImpl.cpp
|
| @@ -10,6 +10,7 @@
|
| #include "core/dom/ExecutionContextTask.h"
|
| #include "core/dom/NodeComputedStyle.h"
|
| #include "core/dom/StyleEngine.h"
|
| +#include "core/dom/TaskRunnerHelper.h"
|
| #include "core/events/ScopedEventQueue.h"
|
| #include "core/frame/FrameView.h"
|
| #include "core/frame/LocalFrame.h"
|
| @@ -499,7 +500,7 @@ void PopupMenuImpl::updateFromElement(UpdateReason) {
|
| return;
|
| m_needsUpdate = true;
|
| ownerElement().document().postTask(
|
| - BLINK_FROM_HERE,
|
| + TaskType::UserInteraction, BLINK_FROM_HERE,
|
| createSameThreadTask(&PopupMenuImpl::update, wrapPersistent(this)));
|
| }
|
|
|
|
|