| Index: third_party/WebKit/Source/core/input/TouchEventManager.h
|
| diff --git a/third_party/WebKit/Source/core/input/TouchEventManager.h b/third_party/WebKit/Source/core/input/TouchEventManager.h
|
| index d791b497b80851c9f7df3395518bcfab2718f435..b33d8d384c71a6f7f3d4c336b0c3951fa69150cf 100644
|
| --- a/third_party/WebKit/Source/core/input/TouchEventManager.h
|
| +++ b/third_party/WebKit/Source/core/input/TouchEventManager.h
|
| @@ -9,6 +9,7 @@
|
| #include "core/events/PointerEventFactory.h"
|
| #include "platform/wtf/Allocator.h"
|
| #include "platform/wtf/HashMap.h"
|
| +#include "platform/wtf/Vector.h"
|
| #include "public/platform/WebInputEventResult.h"
|
| #include "public/platform/WebTouchPoint.h"
|
|
|
| @@ -56,6 +57,7 @@ class CORE_EXPORT TouchEventManager
|
| // cannot be const as this function might change some of the properties in
|
| // TouchInfo objects.
|
| WebInputEventResult HandleTouchEvent(const WebTouchEvent&,
|
| + const Vector<WebTouchEvent>&,
|
| HeapVector<TouchInfo>&);
|
|
|
| // Resets the internal state of this object.
|
| @@ -69,6 +71,7 @@ class CORE_EXPORT TouchEventManager
|
| void SetAllPropertiesOfTouchInfos(HeapVector<TouchInfo>&);
|
|
|
| WebInputEventResult DispatchTouchEvents(const WebTouchEvent&,
|
| + const Vector<WebTouchEvent>&,
|
| const HeapVector<TouchInfo>&,
|
| bool all_touches_released);
|
|
|
|
|