Index: ui/views/controls/scroll_view.cc |
diff --git a/ui/views/controls/scroll_view.cc b/ui/views/controls/scroll_view.cc |
index e9dbdac9fdd94cb6a246668d3329c8108b4b89e3..68ee68fee3eaa8561e097be266a8ec202f448155 100644 |
--- a/ui/views/controls/scroll_view.cc |
+++ b/ui/views/controls/scroll_view.cc |
@@ -459,6 +459,14 @@ void ScrollView::OnMouseExited(const ui::MouseEvent& event) { |
vert_sb_->OnMouseExitedScrollView(event); |
} |
+void ScrollView::OnScrollEvent(ui::ScrollEvent* event) { |
+#if defined(OS_MACOSX) |
+ // TODO(tapted): Send |event| to a cc::InputHandler. For now, there's nothing |
+ // to do because Widget::OnScrollEvent() will automatically process an |
+ // unhandled ScrollEvent as a MouseWheelEvent. |
+#endif |
+} |
+ |
void ScrollView::OnGestureEvent(ui::GestureEvent* event) { |
// If the event happened on one of the scrollbars, then those events are |
// sent directly to the scrollbars. Otherwise, only scroll events are sent to |