| Index: content/common/input/touch_event_stream_validator_unittest.cc | 
| diff --git a/content/common/input/touch_event_stream_validator_unittest.cc b/content/common/input/touch_event_stream_validator_unittest.cc | 
| index fef7379ed1a2b0d911ce9036a2f7ac24161b88b5..5e3b767fb1d09364de01342fc5736bc0e349ed71 100644 | 
| --- a/content/common/input/touch_event_stream_validator_unittest.cc | 
| +++ b/content/common/input/touch_event_stream_validator_unittest.cc | 
| @@ -159,12 +159,7 @@ TEST(TouchEventStreamValidator, InvalidPointStates) { | 
| j <= WebTouchPoint::StateCancelled; | 
| ++j) { | 
| event.touches[0].state = static_cast<WebTouchPoint::State>(j); | 
| -      if (event.touches[0].state == kValidTouchPointStatesForType[i] | 
| -          // TODO(jdduke): Remove this StateStationary workaround check for | 
| -          // TouchMove after implementing TouchMove events filtering based on | 
| -          // corrected touches state in TouchEventQueue, crbug.com/452032. | 
| -          || (event.type == WebInputEvent::TouchMove | 
| -              && event.touches[0].state == WebTouchPoint::StateStationary)) { | 
| +      if (event.touches[0].state == kValidTouchPointStatesForType[i]) { | 
| EXPECT_TRUE(validator.Validate(event, &error_msg)); | 
| EXPECT_TRUE(error_msg.empty()); | 
| } else { | 
|  |