| Index: ui/app_list/contents_view.cc
|
| ===================================================================
|
| --- ui/app_list/contents_view.cc (revision 151481)
|
| +++ ui/app_list/contents_view.cc (working copy)
|
| @@ -187,7 +187,7 @@
|
| }
|
|
|
| ui::GestureStatus ContentsView::OnGestureEvent(
|
| - const views::GestureEvent& event) {
|
| + const ui::GestureEvent& event) {
|
| if (show_state_ != SHOW_APPS)
|
| return ui::GESTURE_STATUS_UNKNOWN;
|
|
|
| @@ -233,7 +233,7 @@
|
| return false;
|
| }
|
|
|
| -bool ContentsView::OnMouseWheel(const views::MouseWheelEvent& event) {
|
| +bool ContentsView::OnMouseWheel(const ui::MouseWheelEvent& event) {
|
| if (show_state_ != SHOW_APPS)
|
| return false;
|
|
|
| @@ -246,7 +246,7 @@
|
| return false;
|
| }
|
|
|
| -bool ContentsView::OnScrollEvent(const views::ScrollEvent & event) {
|
| +bool ContentsView::OnScrollEvent(const ui::ScrollEvent& event) {
|
| if (show_state_ != SHOW_APPS)
|
| return false;
|
|
|
|
|