| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ | 5 #ifndef COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ |
| 6 #define COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ | 6 #define COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 11 #include "components/infobars/core/confirm_infobar_delegate.h" | 11 #include "components/infobars/core/confirm_infobar_delegate.h" |
| 12 #include "ui/gfx/vector_icons_public.h" |
| 12 | 13 |
| 13 namespace infobars { | 14 namespace infobars { |
| 14 class InfoBarManager; | 15 class InfoBarManager; |
| 15 } | 16 } |
| 16 | 17 |
| 17 class SimpleAlertInfoBarDelegate : public ConfirmInfoBarDelegate { | 18 class SimpleAlertInfoBarDelegate : public ConfirmInfoBarDelegate { |
| 18 public: | 19 public: |
| 19 // Creates a simple alert infobar and delegate and adds the infobar to | 20 // Creates a simple alert infobar and delegate and adds the infobar to |
| 20 // |infobar_manager|. |icon_id| may be kNoIconID if no icon is shown. | 21 // |infobar_manager|. If |vector_icon_id| is not VECTOR_ICON_NONE, it will be |
| 22 // shown; otherwise, |icon_id| (if present) will be used as the icon. |
| 21 static void Create(infobars::InfoBarManager* infobar_manager, | 23 static void Create(infobars::InfoBarManager* infobar_manager, |
| 22 int icon_id, | 24 int icon_id, |
| 25 gfx::VectorIconId vector_icon_id, |
| 23 const base::string16& message, | 26 const base::string16& message, |
| 24 bool auto_expire); | 27 bool auto_expire); |
| 25 | 28 |
| 26 private: | 29 private: |
| 27 SimpleAlertInfoBarDelegate(int icon_id, | 30 SimpleAlertInfoBarDelegate(int icon_id, |
| 31 gfx::VectorIconId vector_icon_id, |
| 28 const base::string16& message, | 32 const base::string16& message, |
| 29 bool auto_expire); | 33 bool auto_expire); |
| 30 ~SimpleAlertInfoBarDelegate() override; | 34 ~SimpleAlertInfoBarDelegate() override; |
| 31 | 35 |
| 32 // ConfirmInfoBarDelegate: | 36 // ConfirmInfoBarDelegate: |
| 33 int GetIconId() const override; | 37 int GetIconId() const override; |
| 38 gfx::VectorIconId GetVectorIconId() const override; |
| 34 bool ShouldExpire(const NavigationDetails& details) const override; | 39 bool ShouldExpire(const NavigationDetails& details) const override; |
| 35 base::string16 GetMessageText() const override; | 40 base::string16 GetMessageText() const override; |
| 36 int GetButtons() const override; | 41 int GetButtons() const override; |
| 37 | 42 |
| 38 const int icon_id_; | 43 const int icon_id_; |
| 44 gfx::VectorIconId vector_icon_id_; |
| 39 base::string16 message_; | 45 base::string16 message_; |
| 40 bool auto_expire_; // Should it expire automatically on navigation? | 46 bool auto_expire_; // Should it expire automatically on navigation? |
| 41 | 47 |
| 42 DISALLOW_COPY_AND_ASSIGN(SimpleAlertInfoBarDelegate); | 48 DISALLOW_COPY_AND_ASSIGN(SimpleAlertInfoBarDelegate); |
| 43 }; | 49 }; |
| 44 | 50 |
| 45 #endif // COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ | 51 #endif // COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ |
| OLD | NEW |