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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_
6 #define COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/strings/string16.h"
11 #include "components/infobars/core/confirm_infobar_delegate.h"
17 class SimpleAlertInfoBarDelegate
: public ConfirmInfoBarDelegate
{
19 // 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 static void Create(infobars::InfoBarManager
* infobar_manager
,
23 const base::string16
& message
,
27 SimpleAlertInfoBarDelegate(int icon_id
,
28 const base::string16
& message
,
30 ~SimpleAlertInfoBarDelegate() override
;
32 // ConfirmInfoBarDelegate:
33 int GetIconID() const override
;
34 bool ShouldExpire(const NavigationDetails
& details
) const override
;
35 base::string16
GetMessageText() const override
;
36 int GetButtons() const override
;
39 base::string16 message_
;
40 bool auto_expire_
; // Should it expire automatically on navigation?
42 DISALLOW_COPY_AND_ASSIGN(SimpleAlertInfoBarDelegate
);
45 #endif // COMPONENTS_INFOBARS_CORE_SIMPLE_ALERT_INFOBAR_DELEGATE_H_