OLD | NEW |
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 #ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_CONTROLLER_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 #import "base/mac/cocoa_protocols.h" | |
11 #include "base/memory/scoped_nsobject.h" | 10 #include "base/memory/scoped_nsobject.h" |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 | 12 |
14 class Balloon; | 13 class Balloon; |
15 @class BalloonContentViewCocoa; | 14 @class BalloonContentViewCocoa; |
16 @class BalloonShelfViewCocoa; | 15 @class BalloonShelfViewCocoa; |
17 class BalloonViewHost; | 16 class BalloonViewHost; |
18 @class HoverImageButton; | 17 @class HoverImageButton; |
19 @class MenuController; | 18 @class MenuController; |
20 class NotificationOptionsMenuModel; | 19 class NotificationOptionsMenuModel; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 85 |
87 // The BalloonHost | 86 // The BalloonHost |
88 - (BalloonViewHost*)getHost; | 87 - (BalloonViewHost*)getHost; |
89 @end | 88 @end |
90 | 89 |
91 @interface BalloonController (UnitTesting) | 90 @interface BalloonController (UnitTesting) |
92 - (void)initializeHost; | 91 - (void)initializeHost; |
93 @end | 92 @end |
94 | 93 |
95 #endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_CONTROLLER_H_ | 94 #endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_CONTROLLER_H_ |
OLD | NEW |