Index: ui/arc/notification/arc_custom_notification_view.cc |
diff --git a/ui/arc/notification/arc_custom_notification_view.cc b/ui/arc/notification/arc_custom_notification_view.cc |
index 3a8d99ee08a8bb26c39da6a620514703eb059f5a..62d7ee08f93986d9a82dde46c717603520189d6b 100644 |
--- a/ui/arc/notification/arc_custom_notification_view.cc |
+++ b/ui/arc/notification/arc_custom_notification_view.cc |
@@ -84,7 +84,8 @@ class ArcCustomNotificationView::EventForwarder : public ui::EventHandler { |
ui::LocatedEvent* located_event = event->AsLocatedEvent(); |
located_event->target()->ConvertEventToTarget(widget->GetNativeWindow(), |
located_event); |
- if (located_event->type() == ui::ET_MOUSE_MOVED) { |
+ if (located_event->type() == ui::ET_MOUSE_MOVED || |
+ located_event->IsMouseWheelEvent()) { |
widget->OnMouseEvent(located_event->AsMouseEvent()); |
} else if (located_event->IsScrollEvent()) { |
widget->OnScrollEvent(located_event->AsScrollEvent()); |