| 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 d5762143646b246a40c6b8549d317a99e05abf4f..7a3fe5cbd3f0c1fa773b38438379f535970c27d3 100644
|
| --- a/third_party/WebKit/Source/core/input/TouchEventManager.h
|
| +++ b/third_party/WebKit/Source/core/input/TouchEventManager.h
|
| @@ -40,7 +40,6 @@ public:
|
| FloatPoint contentPoint;
|
| FloatSize adjustedRadius;
|
| bool knownTarget;
|
| - bool consumed;
|
| String region;
|
| };
|
|
|
| @@ -48,14 +47,15 @@ public:
|
| ~TouchEventManager();
|
| DECLARE_TRACE();
|
|
|
| - // Returns true if it succesfully generates touchInfos.
|
| - bool generateTouchInfosAfterHittest(
|
| + // Does the hit-testing again if the original hit test result was not inside
|
| + // capturing frame for touch events.
|
| + bool reHitTestTouchPointsIfNeeded(
|
| const PlatformTouchEvent&,
|
| HeapVector<TouchInfo>&);
|
|
|
| WebInputEventResult handleTouchEvent(
|
| const PlatformTouchEvent&,
|
| - const HeapVector<TouchInfo>&);
|
| + HeapVector<TouchInfo>&);
|
|
|
| // Resets the internal state of this object.
|
| void clear();
|
|
|