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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #import "chrome/browser/ui/cocoa/chrome_event_processing_window.h" 8 #import "chrome/browser/ui/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 // If NO the window will never become key.
22 // Default YES.
23 BOOL canBecomeKey_;
21 // Bridge to proxy Chrome notifications to the window. 24 // Bridge to proxy Chrome notifications to the window.
22 scoped_ptr<AppNotificationBridge> notificationBridge_; 25 scoped_ptr<AppNotificationBridge> notificationBridge_;
23 } 26 }
24 27
25 @property(nonatomic) BOOL delayOnClose; 28 @property(nonatomic) BOOL delayOnClose;
29 @property(nonatomic) BOOL canBecomeKey;
26 30
27 // Returns YES if the window is in the process of closing. 31 // Returns YES if the window is in the process of closing.
28 // Can't use "windowWillClose" notification because that will be sent 32 // Can't use "windowWillClose" notification because that will be sent
29 // after the closing animation has completed. 33 // after the closing animation has completed.
30 - (BOOL)isClosing; 34 - (BOOL)isClosing;
31 35
32 @end 36 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698