| Index: ui/aura/window_unittest.cc
|
| diff --git a/ui/aura/window_unittest.cc b/ui/aura/window_unittest.cc
|
| index d3779df234a7c2eea95e7342a890abd206654d1e..f78ed7c38a438616c0ab714782538163e9edd0b8 100644
|
| --- a/ui/aura/window_unittest.cc
|
| +++ b/ui/aura/window_unittest.cc
|
| @@ -518,7 +518,8 @@ TEST_F(WindowTest, CaptureTests) {
|
| generator.PressLeftButton();
|
| EXPECT_EQ(1, delegate.mouse_event_count());
|
|
|
| - root_window()->DispatchTouchEvent(&touchev);
|
| + TouchEvent touchev2(ui::ET_TOUCH_PRESSED, gfx::Point(50, 50), 1);
|
| + root_window()->DispatchTouchEvent(&touchev2);
|
| EXPECT_EQ(0, delegate.touch_event_count());
|
|
|
| // Removing the capture window from parent should reset the capture window
|
|
|