| Index: chrome/browser/ui/cocoa/info_bubble_window.h
|
| diff --git a/chrome/browser/ui/cocoa/info_bubble_window.h b/chrome/browser/ui/cocoa/info_bubble_window.h
|
| index cf992d71c03263acf9e3b0336939263b2740f9e9..961d660e106342c80ffb8745ff27a808bda2f7a7 100644
|
| --- a/chrome/browser/ui/cocoa/info_bubble_window.h
|
| +++ b/chrome/browser/ui/cocoa/info_bubble_window.h
|
| @@ -18,11 +18,15 @@ class AppNotificationBridge;
|
| // If NO the window will close immediately instead of fading out.
|
| // Default YES.
|
| BOOL delayOnClose_;
|
| + // If NO the window will never become key.
|
| + // Default YES.
|
| + BOOL canBecomeKeyWindow_;
|
| // Bridge to proxy Chrome notifications to the window.
|
| scoped_ptr<AppNotificationBridge> notificationBridge_;
|
| }
|
|
|
| @property(nonatomic) BOOL delayOnClose;
|
| +@property(nonatomic) BOOL canBecomeKeyWindow;
|
|
|
| // Returns YES if the window is in the process of closing.
|
| // Can't use "windowWillClose" notification because that will be sent
|
|
|