| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
| 6 | 6 |
| 7 #include "base/scoped_ptr.h" | 7 #include "base/scoped_ptr.h" |
| 8 #import "chrome/browser/cocoa/chrome_event_processing_window.h" | 8 #import "chrome/browser/cocoa/chrome_event_processing_window.h" |
| 9 | 9 |
| 10 class AppNotificationBridge; | 10 class AppNotificationBridge; |
| 11 | 11 |
| 12 // A rounded window with an arrow used for example when you click on the STAR | 12 // A rounded window with an arrow used for example when you click on the STAR |
| 13 // button or that pops up within our first-run UI. | 13 // button or that pops up within our first-run UI. |
| 14 @interface InfoBubbleWindow : ChromeEventProcessingWindow { | 14 @interface InfoBubbleWindow : ChromeEventProcessingWindow { |
| 15 @private | 15 @private |
| 16 // Is self in the process of closing. | 16 // Is self in the process of closing. |
| 17 BOOL closing_; | 17 BOOL closing_; |
| 18 // If NO the window will close immediately instead of fading out. | 18 // If NO the window will close immediately instead of fading out. |
| 19 // Default YES. | 19 // Default YES. |
| 20 BOOL delayOnClose_; | 20 BOOL delayOnClose_; |
| 21 // Bridge to proxy Chrome notifications to the window. | 21 // Bridge to proxy Chrome notifications to the window. |
| 22 scoped_ptr<AppNotificationBridge> notificationBridge_; | 22 scoped_ptr<AppNotificationBridge> notificationBridge_; |
| 23 } | 23 } |
| 24 | 24 |
| 25 // Returns YES if the window is in the process of closing. | 25 // Returns YES if the window is in the process of closing. |
| 26 // Can't use "windowWillClose" notification because that will be sent | 26 // Can't use "windowWillClose" notification because that will be sent |
| 27 // after the closing animation has completed. | 27 // after the closing animation has completed. |
| 28 - (BOOL)isClosing; | 28 - (BOOL)isClosing; |
| 29 | 29 |
| 30 @property BOOL delayOnClose; | 30 @property (nonatomic) BOOL delayOnClose; |
| 31 | 31 |
| 32 @end | 32 @end |
| OLD | NEW |