| Index: public/web/WebInputEvent.h
|
| diff --git a/public/web/WebInputEvent.h b/public/web/WebInputEvent.h
|
| index 6b2f319c36727ad14c2a9bb129f5e7fb166fe19d..68414184a4f411a5d2c38a7ca57fb0f64cc49e5d 100644
|
| --- a/public/web/WebInputEvent.h
|
| +++ b/public/web/WebInputEvent.h
|
| @@ -491,11 +491,6 @@ public:
|
| // List of all touches, regardless of state.
|
| WebTouchPoint touches[touchesLengthCap];
|
|
|
| - // FIXME: Remove after eliminating downstream references, crbug.com/358132.
|
| - unsigned changedTouchesLength;
|
| - // List of all touches whose state has changed since the last WebTouchEvent
|
| - WebTouchPoint changedTouches[touchesLengthCap];
|
| -
|
| // Whether the event can be canceled (with preventDefault). If true then the browser
|
| // must wait for an ACK for this event. If false then no ACK IPC is expected.
|
| // See comment at the top for why an int is used here instead of a bool.
|
| @@ -504,7 +499,6 @@ public:
|
| WebTouchEvent()
|
| : WebInputEvent(sizeof(WebTouchEvent))
|
| , touchesLength(0)
|
| - , changedTouchesLength(0)
|
| , cancelable(true)
|
| {
|
| }
|
|
|