Chromium Code Reviews| 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 961d660e106342c80ffb8745ff27a808bda2f7a7..888f8ba27c17c9115df15004103d52848fd550bd 100644 |
| --- a/chrome/browser/ui/cocoa/info_bubble_window.h |
| +++ b/chrome/browser/ui/cocoa/info_bubble_window.h |
| @@ -21,12 +21,16 @@ class AppNotificationBridge; |
| // If NO the window will never become key. |
| // Default YES. |
| BOOL canBecomeKeyWindow_; |
| + // If YES then things under the window will look blurred. |
| + // Default YES. |
| + BOOL hasBlurredBackground_; |
| // Bridge to proxy Chrome notifications to the window. |
| scoped_ptr<AppNotificationBridge> notificationBridge_; |
| } |
| @property(nonatomic) BOOL delayOnClose; |
| @property(nonatomic) BOOL canBecomeKeyWindow; |
| +@property(nonatomic) BOOL hasBlurredBackground; |
|
Nico
2012/07/20 07:53:23
"// Only has an effect if called before the bubble
sail
2012/07/20 08:00:27
Done.
|
| // Returns YES if the window is in the process of closing. |
| // Can't use "windowWillClose" notification because that will be sent |