OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_CONTROLLER
_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_CONTROLLER
_H_ |
6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_CONTROLLER
_H_ | 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_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_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
12 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 11 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
13 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" | 12 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" |
14 #include "third_party/skia/include/core/SkBitmap.h" | 13 #include "third_party/skia/include/core/SkBitmap.h" |
15 | 14 |
16 class Browser; | 15 class Browser; |
17 class ExtensionLoadedNotificationObserver; | 16 class ExtensionLoadedNotificationObserver; |
18 @class HoverCloseButton; | 17 @class HoverCloseButton; |
19 @class InfoBubbleView; | 18 @class InfoBubbleView; |
20 | 19 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 - (NSWindow*)initializeWindow; | 112 - (NSWindow*)initializeWindow; |
114 - (int)calculateWindowHeight; | 113 - (int)calculateWindowHeight; |
115 - (void)setMessageFrames:(int)newWindowHeight; | 114 - (void)setMessageFrames:(int)newWindowHeight; |
116 - (NSRect)getExtensionInstalledMsgFrame; | 115 - (NSRect)getExtensionInstalledMsgFrame; |
117 - (NSRect)getExtraInfoMsgFrame; | 116 - (NSRect)getExtraInfoMsgFrame; |
118 - (NSRect)getExtensionInstalledInfoMsgFrame; | 117 - (NSRect)getExtensionInstalledInfoMsgFrame; |
119 | 118 |
120 @end // ExtensionInstalledBubbleController(ExposedForTesting) | 119 @end // ExtensionInstalledBubbleController(ExposedForTesting) |
121 | 120 |
122 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_CONTROL
LER_H_ | 121 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_INSTALLED_BUBBLE_CONTROL
LER_H_ |
OLD | NEW |