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

Side by Side Diff: chrome/browser/ui/cocoa/extensions/extension_toolbar_icon_surfacing_bubble_mac.h

Issue 1086973004: [Extensions Mac] Implement developer mode warning on mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Avi's Created 5 years, 8 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698