| Index: ash/launcher/alternate_app_list_button.cc
|
| diff --git a/ash/launcher/alternate_app_list_button.cc b/ash/launcher/alternate_app_list_button.cc
|
| index 9a2ffcccba4c71b00865c9db3ded06c6ab50573c..0466c71ae54761d3adf281ce891afdb956352c75 100644
|
| --- a/ash/launcher/alternate_app_list_button.cc
|
| +++ b/ash/launcher/alternate_app_list_button.cc
|
| @@ -146,26 +146,5 @@ void AlternateAppListButton::GetAccessibleState(
|
| state->name = host_->GetAccessibleName(this);
|
| }
|
|
|
| -void AlternateAppListButton::OnGestureEvent(ui::GestureEvent* event) {
|
| - switch (event->type()) {
|
| - case ui::ET_GESTURE_SCROLL_BEGIN:
|
| - host_->PointerPressedOnButton(this, LauncherButtonHost::TOUCH, *event);
|
| - event->SetHandled();
|
| - return;
|
| - case ui::ET_GESTURE_SCROLL_UPDATE:
|
| - host_->PointerDraggedOnButton(this, LauncherButtonHost::TOUCH, *event);
|
| - event->SetHandled();
|
| - return;
|
| - case ui::ET_GESTURE_SCROLL_END:
|
| - case ui::ET_SCROLL_FLING_START:
|
| - host_->PointerReleasedOnButton(this, LauncherButtonHost::TOUCH, false);
|
| - event->SetHandled();
|
| - return;
|
| - default:
|
| - ImageButton::OnGestureEvent(event);
|
| - return;
|
| - }
|
| -}
|
| -
|
| } // namespace internal
|
| } // namespace ash
|
|
|