| 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" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 bool auto_expire); | 24 bool auto_expire); |
| 25 | 25 |
| 26 private: | 26 private: |
| 27 SimpleAlertInfoBarDelegate(int icon_id, | 27 SimpleAlertInfoBarDelegate(int icon_id, |
| 28 const base::string16& message, | 28 const base::string16& message, |
| 29 bool auto_expire); | 29 bool auto_expire); |
| 30 ~SimpleAlertInfoBarDelegate() override; | 30 ~SimpleAlertInfoBarDelegate() override; |
| 31 | 31 |
| 32 // ConfirmInfoBarDelegate: | 32 // ConfirmInfoBarDelegate: |
| 33 int GetIconID() const override; | 33 int GetIconID() const override; |
| 34 bool ShouldExpireInternal(const NavigationDetails& details) const override; |
| 34 base::string16 GetMessageText() const override; | 35 base::string16 GetMessageText() const override; |
| 35 int GetButtons() const override; | 36 int GetButtons() const override; |
| 36 bool ShouldExpireInternal(const NavigationDetails& details) const override; | |
| 37 | 37 |
| 38 const int icon_id_; | 38 const int icon_id_; |
| 39 base::string16 message_; | 39 base::string16 message_; |
| 40 bool auto_expire_; // Should it expire automatically on navigation? | 40 bool auto_expire_; // Should it expire automatically on navigation? |
| 41 | 41 |
| 42 DISALLOW_COPY_AND_ASSIGN(SimpleAlertInfoBarDelegate); | 42 DISALLOW_COPY_AND_ASSIGN(SimpleAlertInfoBarDelegate); |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 #endif // COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ | 45 #endif // COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_ |
| OLD | NEW |