| Index: chrome/browser/ui/views/status_bubble_views.cc
|
| diff --git a/chrome/browser/ui/views/status_bubble_views.cc b/chrome/browser/ui/views/status_bubble_views.cc
|
| index 30bc95f5debf97e91f33fc223613e3ecec8939dc..453dd63828b651278489db7185b18396cc7cbd8f 100644
|
| --- a/chrome/browser/ui/views/status_bubble_views.cc
|
| +++ b/chrome/browser/ui/views/status_bubble_views.cc
|
| @@ -31,6 +31,10 @@
|
| #include "ui/views/widget/root_view.h"
|
| #include "ui/views/widget/widget.h"
|
|
|
| +#if defined(USE_ASH)
|
| +#include "ash/wm/property_util.h"
|
| +#endif
|
| +
|
| using views::Widget;
|
|
|
| // The alpha and color of the bubble's shadow.
|
| @@ -580,6 +584,9 @@ void StatusBubbleViews::Init() {
|
| popup_->SetVisibilityChangedAnimationsEnabled(false);
|
| popup_->SetOpacity(0x00);
|
| popup_->SetContentsView(view_);
|
| +#if defined(USE_ASH)
|
| + ash::SetIgnoredByShelf(popup_->GetNativeWindow(), true);
|
| +#endif
|
| Reposition();
|
| }
|
| }
|
|
|