| Index: chrome/browser/cocoa/status_bubble_mac.mm
|
| diff --git a/chrome/browser/cocoa/status_bubble_mac.mm b/chrome/browser/cocoa/status_bubble_mac.mm
|
| index daea726f00c9a22a7642c480e95981f29404dfb8..c511253915a36e47d3ff0e13632db9fce7797830 100644
|
| --- a/chrome/browser/cocoa/status_bubble_mac.mm
|
| +++ b/chrome/browser/cocoa/status_bubble_mac.mm
|
| @@ -350,8 +350,10 @@ void StatusBubbleMac::Attach() {
|
| void StatusBubbleMac::Detach() {
|
| // This method may be called several times in the process of hiding or
|
| // destroying a status bubble.
|
| - if (is_attached())
|
| - [parent_ removeChildWindow:window_];
|
| + if (is_attached()) {
|
| + [parent_ removeChildWindow:window_]; // See crbug.com/28107 ...
|
| + [window_ orderOut:nil]; // ... and crbug.com/29054.
|
| + }
|
| }
|
|
|
| void StatusBubbleMac::AnimationDidStop(CAAnimation* animation, bool finished) {
|
|
|