| Index: third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/TouchEventManager.cpp b/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| index 715b6d402ca01e469a5210943b55e5826c231707..0fec09a24220ea2205795ebf1736ad29ac99b562 100644
|
| --- a/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| +++ b/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| @@ -18,7 +18,6 @@
|
| #include "core/page/Page.h"
|
| #include "platform/Histogram.h"
|
| #include "platform/PlatformTouchEvent.h"
|
| -#include "platform/RuntimeEnabledFeatures.h"
|
| #include "wtf/CurrentTime.h"
|
| #include "wtf/PtrUtil.h"
|
| #include <memory>
|
| @@ -490,8 +489,6 @@ class CurrentEventHolder {
|
| WebInputEventResult TouchEventManager::handleTouchEvent(
|
| const PlatformTouchEvent& event,
|
| HeapVector<TouchInfo>& touchInfos) {
|
| - if (!RuntimeEnabledFeatures::touchEventAPIEnabled())
|
| - return WebInputEventResult::HandledSuppressed;
|
|
|
| // Track the current event for the scope of this function.
|
| CurrentEventHolder holder(m_currentEvent, event.type());
|
|
|