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

Unified Diff: chrome/browser/ui/cocoa/extensions/toolbar_actions_bar_bubble_mac.h

Issue 2206693002: Improve settings override bubble to indicate policy installed extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/extensions/toolbar_actions_bar_bubble_mac.h
diff --git a/chrome/browser/ui/cocoa/extensions/toolbar_actions_bar_bubble_mac.h b/chrome/browser/ui/cocoa/extensions/toolbar_actions_bar_bubble_mac.h
index ffc67c1419a8b61e18f6f0f1a73e446d1a004257..5875b8c907b78f87753a573c478279045267055b 100644
--- a/chrome/browser/ui/cocoa/extensions/toolbar_actions_bar_bubble_mac.h
+++ b/chrome/browser/ui/cocoa/extensions/toolbar_actions_bar_bubble_mac.h
@@ -33,8 +33,14 @@ class ToolbarActionsBarBubbleDelegate;
// The dismiss button. Optional.
NSButton* dismissButton_;
- // The "learn more" link-style button. Optional.
- NSButton* learnMoreButton_;
+ // The extra view text as a link-style button. Optional.
+ NSButton* link_;
+
+ // The extra view text as a label. Optional.
+ NSTextField* label_;
+
+ // The extra view icon that can accompany the extra view text. Optional.
+ NSImageView* iconView_;
// This bubble's delegate.
std::unique_ptr<ToolbarActionsBarBubbleDelegate> delegate_;
@@ -53,7 +59,9 @@ class ToolbarActionsBarBubbleDelegate;
@property(readonly, nonatomic) NSButton* actionButton;
@property(readonly, nonatomic) NSTextField* itemList;
@property(readonly, nonatomic) NSButton* dismissButton;
-@property(readonly, nonatomic) NSButton* learnMoreButton;
+@property(readonly, nonatomic) NSButton* link;
+@property(readonly, nonatomic) NSTextField* label;
+@property(readonly, nonatomic) NSImageView* iconView;
@end

Powered by Google App Engine
This is Rietveld 408576698