Chromium Code Reviews| Index: services/ui/ws/window_tree.cc |
| diff --git a/services/ui/ws/window_tree.cc b/services/ui/ws/window_tree.cc |
| index 1841ffee0ca8a83d009cc303e5cd7f72f46a07c8..d25ce00a41e3b706328990879d2b9761ef6edbc1 100644 |
| --- a/services/ui/ws/window_tree.cc |
| +++ b/services/ui/ws/window_tree.cc |
| @@ -1050,7 +1050,8 @@ bool WindowTree::EventMatchesPointerWatcher(const ui::Event& event) const { |
| if (pointer_watcher_want_moves_ && event.type() == ui::ET_POINTER_MOVED) |
| return true; |
| return event.type() == ui::ET_POINTER_DOWN || |
| - event.type() == ui::ET_POINTER_UP; |
| + event.type() == ui::ET_POINTER_UP || |
| + event.type() == ui::ET_POINTER_WHEEL_CHANGED; |
| } |
|
sadrul
2016/09/13 14:55:13
Can you move this part out in a separate CL with a
riajiang
2016/09/13 15:05:49
Sure.
|
| void WindowTree::NewWindow( |