| Index: ui/views/bubble/tray_bubble_view.cc
|
| diff --git a/ui/views/bubble/tray_bubble_view.cc b/ui/views/bubble/tray_bubble_view.cc
|
| index 46eebae8b028a3e95ceb7d357b08bfebfb71b686..21dbe42ce384a85bc0d3d9c3db84725c620e4f2e 100644
|
| --- a/ui/views/bubble/tray_bubble_view.cc
|
| +++ b/ui/views/bubble/tray_bubble_view.cc
|
| @@ -393,6 +393,11 @@ void TrayBubbleView::GetAccessibleNodeData(ui::AXNodeData* node_data) {
|
| }
|
| }
|
|
|
| +void TrayBubbleView::OnGestureEvent(ui::GestureEvent* event) {
|
| + if (!delegate_ || !delegate_->ProcessGestureEventForBubble(event))
|
| + BubbleDialogDelegateView::OnGestureEvent(event);
|
| +}
|
| +
|
| void TrayBubbleView::MouseMovedOutOfHost() {
|
| // The mouse was accidentally over the bubble when it opened and the AutoClose
|
| // logic was not activated. Now that the user did move the mouse we tell the
|
|
|