Index: ui/aura/window_event_dispatcher_unittest.cc |
diff --git a/ui/aura/window_event_dispatcher_unittest.cc b/ui/aura/window_event_dispatcher_unittest.cc |
index 58efc20bfa9e49e9ab075fb9c88b41fa818cb33d..c14ab34d8b4b0f9860b446ffb419604fa9ebf080 100644 |
--- a/ui/aura/window_event_dispatcher_unittest.cc |
+++ b/ui/aura/window_event_dispatcher_unittest.cc |
@@ -941,9 +941,7 @@ |
std::unique_ptr<aura::Window> window(CreateTestWindowWithDelegate( |
&delegate, 1, gfx::Rect(50, 50, 100, 100), root_window())); |
- host()->dispatcher()->ProcessedTouchEvent( |
- 0, window.get(), ui::ER_UNHANDLED, |
- false /* is_source_touch_event_set_non_blocking */); |
+ host()->dispatcher()->ProcessedTouchEvent(0, window.get(), ui::ER_UNHANDLED); |
} |
// This event handler requests the dispatcher to start holding pointer-move |
@@ -2606,9 +2604,8 @@ |
// Convert touch event back to root window coordinates. |
event->ConvertLocationToTarget(window_, window_->GetRootWindow()); |
event->DisableSynchronousHandling(); |
- dispatcher_->ProcessedTouchEvent( |
- event->unique_event_id(), window_, ui::ER_UNHANDLED, |
- false /* is_source_touch_event_set_non_blocking */); |
+ dispatcher_->ProcessedTouchEvent(event->unique_event_id(), window_, |
+ ui::ER_UNHANDLED); |
event->StopPropagation(); |
} |