| 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 dc8654bb30bc2ff41d2463009ab0b96da154e02b..9b3ab7c67c42b7a214bc345839d9094e4d9f8d8b 100644
|
| --- a/third_party/WebKit/Source/core/input/TouchEventManager.h
|
| +++ b/third_party/WebKit/Source/core/input/TouchEventManager.h
|
| @@ -10,6 +10,7 @@
|
| #include "platform/graphics/TouchAction.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"
|
|
|
| @@ -57,6 +58,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.
|
| @@ -70,6 +72,7 @@ class CORE_EXPORT TouchEventManager
|
| void SetAllPropertiesOfTouchInfos(HeapVector<TouchInfo>&);
|
|
|
| WebInputEventResult DispatchTouchEvents(const WebTouchEvent&,
|
| + const Vector<WebTouchEvent>&,
|
| const HeapVector<TouchInfo>&,
|
| bool all_touches_released);
|
|
|
|
|