BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / ui / extensions / extension_toolbar_icon_surfacing_bubble_delegate.h
blob527201a7fa1008dab34e85b7466ad3b8936a372c
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.
5 #ifndef CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_BUBBLE_DELEGATE_H_
6 #define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_BUBBLE_DELEGATE_H_
8 #include "base/macros.h"
9 #include "chrome/browser/ui/toolbar/toolbar_actions_bar_bubble_delegate.h"
11 class Profile;
13 // The delegate for the bubble to briefly educate users about the toolbar
14 // redesign.
15 class ExtensionToolbarIconSurfacingBubbleDelegate
16 : public ToolbarActionsBarBubbleDelegate {
17 public:
18 explicit ExtensionToolbarIconSurfacingBubbleDelegate(Profile* profile);
19 ~ExtensionToolbarIconSurfacingBubbleDelegate() override;
21 // Returns true if the bubble should be shown for the given |profile|.
22 static bool ShouldShowForProfile(Profile* profile);
24 private:
25 // ToolbarActionsBarBubbleDelegate:
26 base::string16 GetHeadingText() override;
27 base::string16 GetBodyText() override;
28 base::string16 GetItemListText() override;
29 base::string16 GetActionButtonText() override;
30 base::string16 GetDismissButtonText() override;
31 base::string16 GetLearnMoreButtonText() override;
32 void OnBubbleShown() override;
33 void OnBubbleClosed(CloseAction action) override;
35 Profile* profile_;
37 DISALLOW_COPY_AND_ASSIGN(ExtensionToolbarIconSurfacingBubbleDelegate);
40 #endif // CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_TOOLBAR_ICON_SURFACING_BUBBLE_DELEGATE_H_