Chromium Code Reviews| 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 CHROME_BROWSER_INFOBARS_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ | 5 #ifndef COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_INFOBARS_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 | 12 |
| 13 class InfoBarService; | 13 namespace infobars { |
| 14 class InfoBarManager; | |
| 15 } | |
| 14 | 16 |
| 15 class SimpleAlertInfoBarDelegate : public ConfirmInfoBarDelegate { | 17 class SimpleAlertInfoBarDelegate : public ConfirmInfoBarDelegate { |
| 16 public: | 18 public: |
| 17 // Creates a simple alert infobar and delegate and adds the infobar to | 19 // Creates a simple alert infobar and delegate and adds the infobar to |
| 18 // |infobar_service|. | 20 // |infobar_manager|. |icon_id| may be |kNoIconID| if no icon is shown. |
|
Peter Kasting
2014/12/29 22:25:49
Nit: No || on kNoIconID
sdefresne
2014/12/29 22:51:19
Done.
| |
| 19 static void Create(InfoBarService* infobar_service, | 21 static void Create(infobars::InfoBarManager* infobar_manager, |
| 20 int icon_id, // May be |kNoIconID| if no icon is shown. | 22 int icon_id, |
| 21 const base::string16& message, | 23 const base::string16& message, |
| 22 bool auto_expire); | 24 bool auto_expire); |
| 23 | 25 |
| 24 private: | 26 private: |
| 25 SimpleAlertInfoBarDelegate(int icon_id, | 27 SimpleAlertInfoBarDelegate(int icon_id, |
| 26 const base::string16& message, | 28 const base::string16& message, |
| 27 bool auto_expire); | 29 bool auto_expire); |
| 28 ~SimpleAlertInfoBarDelegate() override; | 30 ~SimpleAlertInfoBarDelegate() override; |
| 29 | 31 |
| 30 // ConfirmInfoBarDelegate: | 32 // ConfirmInfoBarDelegate: |
| 31 int GetIconID() const override; | 33 int GetIconID() const override; |
| 32 base::string16 GetMessageText() const override; | 34 base::string16 GetMessageText() const override; |
| 33 int GetButtons() const override; | 35 int GetButtons() const override; |
| 34 bool ShouldExpireInternal(const NavigationDetails& details) const override; | 36 bool ShouldExpireInternal(const NavigationDetails& details) const override; |
| 35 | 37 |
| 36 const int icon_id_; | 38 const int icon_id_; |
| 37 base::string16 message_; | 39 base::string16 message_; |
| 38 bool auto_expire_; // Should it expire automatically on navigation? | 40 bool auto_expire_; // Should it expire automatically on navigation? |
| 39 | 41 |
| 40 DISALLOW_COPY_AND_ASSIGN(SimpleAlertInfoBarDelegate); | 42 DISALLOW_COPY_AND_ASSIGN(SimpleAlertInfoBarDelegate); |
| 41 }; | 43 }; |
| 42 | 44 |
| 43 #endif // CHROME_BROWSER_INFOBARS_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ | 45 #endif // COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ |
| OLD | NEW |