| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_BUBB
LE_MAC_H_ | |
| 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_BUBB
LE_MAC_H_ | |
| 7 | |
| 8 #import <Cocoa/Cocoa.h> | |
| 9 | |
| 10 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" | |
| 11 | |
| 12 class ToolbarActionsBarBubbleDelegate; | |
| 13 | |
| 14 // A bubble for a short user education for the new extension toolbar. | |
| 15 @interface ExtensionToolbarIconSurfacingBubbleMac : BaseBubbleController { | |
| 16 // Whether or not the bubble has been acknowledged. | |
| 17 BOOL acknowledged_; | |
| 18 | |
| 19 ToolbarActionsBarBubbleDelegate* delegate_; | |
| 20 } | |
| 21 | |
| 22 // Creates the bubble for a parent window but does not show it. | |
| 23 - (id)initWithParentWindow:(NSWindow*)parentWindow | |
| 24 anchorPoint:(NSPoint)anchorPoint | |
| 25 delegate:(ToolbarActionsBarBubbleDelegate*)delegate; | |
| 26 | |
| 27 @end | |
| 28 | |
| 29 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_B
UBBLE_MAC_H_ | |
| OLD | NEW |