summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/info_bubble_window.h
diff options
context:
space:
mode:
authordmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-14 00:56:34 +0000
committerdmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-14 00:56:34 +0000
commit0207043ab2d23d96a700bcb9bfb9044bd240ae7b (patch)
tree5f6aa4a1fc5bf4397c251fcb6eb8080e6803c764 /chrome/browser/cocoa/info_bubble_window.h
parentdfce90e9af2e14880627a8c717bf909ba88cf263 (diff)
downloadchromium_src-0207043ab2d23d96a700bcb9bfb9044bd240ae7b.zip
chromium_src-0207043ab2d23d96a700bcb9bfb9044bd240ae7b.tar.gz
chromium_src-0207043ab2d23d96a700bcb9bfb9044bd240ae7b.tar.bz2
Causes all info bubbles to fade in and out with an animation instead of just
appearing. Change to BookmarkBubble.xib was to make the window not show on creation. It will have more mods to it because of switching to IB on Snow Leopard. BUG=27464 TEST=Make the bookmark bubble appear and disappear by clicking on the star. Review URL: http://codereview.chromium.org/389027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31976 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/info_bubble_window.h')
-rw-r--r--chrome/browser/cocoa/info_bubble_window.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/info_bubble_window.h b/chrome/browser/cocoa/info_bubble_window.h
index bd549d1..eea956b 100644
--- a/chrome/browser/cocoa/info_bubble_window.h
+++ b/chrome/browser/cocoa/info_bubble_window.h
@@ -6,5 +6,9 @@
// A rounded window with an arrow used for example when you click on the STAR
// button or that pops up within our first-run UI.
-@interface InfoBubbleWindow : NSWindow
+@interface InfoBubbleWindow : NSWindow {
+ @private
+ // Is self in the process of closing.
+ BOOL closing_;
+}
@end