| Index: ash/common/shelf/overflow_bubble.cc
|
| diff --git a/ash/common/shelf/overflow_bubble.cc b/ash/common/shelf/overflow_bubble.cc
|
| index 0a5428ab3d96e75b88fbd295f1dc538efe66bdd2..eadd54e5597a976ef9ffd9c0e75b93b8b63d770e 100644
|
| --- a/ash/common/shelf/overflow_bubble.cc
|
| +++ b/ash/common/shelf/overflow_bubble.cc
|
| @@ -19,12 +19,12 @@ OverflowBubble::OverflowBubble(WmShelf* wm_shelf)
|
| bubble_(nullptr),
|
| anchor_(nullptr),
|
| shelf_view_(nullptr) {
|
| - WmShell::Get()->AddPointerWatcher(this);
|
| + WmShell::Get()->AddPointerDownWatcher(this);
|
| }
|
|
|
| OverflowBubble::~OverflowBubble() {
|
| Hide();
|
| - WmShell::Get()->RemovePointerWatcher(this);
|
| + WmShell::Get()->RemovePointerDownWatcher(this);
|
| }
|
|
|
| void OverflowBubble::Show(views::View* anchor, ShelfView* shelf_view) {
|
|
|