Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2830)

Unified Diff: chrome/browser/ui/cocoa/info_bubble_window.h

Issue 7740044: Implement fullscreen info bubble on Win and Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to comments Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..b29b14da8c857d796aeab7afefca11cedbc21250 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 canBecomeKey_;
// Bridge to proxy Chrome notifications to the window.
scoped_ptr<AppNotificationBridge> notificationBridge_;
}
@property(nonatomic) BOOL delayOnClose;
+@property(nonatomic) BOOL canBecomeKey;
// Returns YES if the window is in the process of closing.
// Can't use "windowWillClose" notification because that will be sent

Powered by Google App Engine
This is Rietveld 408576698