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

Unified Diff: chrome/browser/ui/extensions/extension_toolbar_icon_surfacing_bubble_delegate.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/extensions/extension_toolbar_icon_surfacing_bubble_delegate.h
diff --git a/chrome/browser/ui/extensions/extension_toolbar_icon_surfacing_bubble_delegate.h b/chrome/browser/ui/extensions/extension_toolbar_icon_surfacing_bubble_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..4ac9916a6fc0befa55daec8e305e178f0c9d73b4
--- /dev/null
+++ b/chrome/browser/ui/extensions/extension_toolbar_icon_surfacing_bubble_delegate.h
@@ -0,0 +1,39 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_BUBBLE_DELEGATE_H_
+#define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_BUBBLE_DELEGATE_H_
+
+#include "base/macros.h"
+#include "chrome/browser/ui/toolbar/toolbar_actions_bar_bubble_delegate.h"
+
+class Profile;
+
+// The delegate for the bubble to briefly educate users about the toolbar
+// redesign.
+class ExtensionToolbarIconSurfacingBubbleDelegate
+ : public ToolbarActionsBarBubbleDelegate {
+ public:
+ explicit ExtensionToolbarIconSurfacingBubbleDelegate(Profile* profile);
+ ~ExtensionToolbarIconSurfacingBubbleDelegate() override;
+
+ // Returns true if the bubble should be shown for the given |profile|.
+ static bool ShouldShowForProfile(Profile* profile);
+
+ private:
+ // ToolbarActionsBarBubbleDelegate:
+ base::string16 GetHeadingText() override;
+ base::string16 GetBodyText() override;
+ base::string16 GetActionButtonText() override;
+ base::string16 GetDismissButtonText() override;
+ base::string16 GetLearnMoreButtonText() override;
+ void OnBubbleShown() override;
+ void OnBubbleClosed(CloseAction action) override;
+
+ Profile* profile_;
+
+ DISALLOW_COPY_AND_ASSIGN(ExtensionToolbarIconSurfacingBubbleDelegate);
+};
+
+#endif // CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_BUBBLE_DELEGATE_H_
« no previous file with comments | « chrome/browser/ui/extensions/OWNERS ('k') | chrome/browser/ui/extensions/extension_toolbar_icon_surfacing_bubble_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698