| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef EventHandlingUtil_h |
| 6 #define EventHandlingUtil_h |
| 7 |
| 8 #include "core/frame/LocalFrame.h" |
| 9 #include "core/layout/HitTestResult.h" |
| 10 #include "platform/geometry/LayoutPoint.h" |
| 11 #include "public/platform/WebInputEventResult.h" |
| 12 |
| 13 namespace blink { |
| 14 |
| 15 namespace EventHandlingUtil { |
| 16 |
| 17 HitTestResult hitTestResultInFrame(LocalFrame*, const LayoutPoint&, |
| 18 HitTestRequest::HitTestRequestType hitType = HitTestRequest::ReadOnly |
| 19 | HitTestRequest::Active); |
| 20 |
| 21 WebInputEventResult mergeEventResult( |
| 22 WebInputEventResult resultA, WebInputEventResult resultB); |
| 23 WebInputEventResult toWebInputEventResult(DispatchEventResult); |
| 24 |
| 25 } // namespace EventHandlingUtil |
| 26 |
| 27 } // namespace blink |
| 28 |
| 29 #endif // EventHandlingUtil_h |
| OLD | NEW |