Chromium Code Reviews| Index: third_party/WebKit/Source/core/input/ScrollManager.cpp |
| diff --git a/third_party/WebKit/Source/core/input/ScrollManager.cpp b/third_party/WebKit/Source/core/input/ScrollManager.cpp |
| index 3e6d4638681cfec8e6e42006dd88d629884d2035..7ab853793d1bf0b12a4f22641e664daa621654c1 100644 |
| --- a/third_party/WebKit/Source/core/input/ScrollManager.cpp |
| +++ b/third_party/WebKit/Source/core/input/ScrollManager.cpp |
| @@ -236,6 +236,12 @@ WebInputEventResult ScrollManager::handleGestureScrollBegin( |
| m_deltaConsumedForScrollSequence; |
| ScrollState* scrollState = ScrollState::create(std::move(scrollStateData)); |
| customizedScroll(*m_scrollGestureHandlingNode.get(), *scrollState); |
| + |
| + if (gestureEvent.sourceDevice == WebGestureDeviceTouchscreen) |
|
bokan
2017/03/09 17:31:03
Put this in a method on Page and share it between
bokan
2017/03/09 18:31:15
Actually, I guess this wouldn't really help much.
sahel
2017/03/10 16:21:33
Acknowledged.
|
| + UseCounter::count(m_frame->document(), UseCounter::ScrollByTouch); |
| + else |
| + UseCounter::count(m_frame->document(), UseCounter::ScrollByWheel); |
| + |
| return WebInputEventResult::HandledSystem; |
| } |