#ifndef CHROME_BROWSER_INFOBARS_SIMPLE_ALERT_INFOBAR_CREATOR_H_
#define CHROME_BROWSER_INFOBARS_SIMPLE_ALERT_INFOBAR_CREATOR_H_
#include <string>
#include "components/infobars/core/infobar_delegate.h"
namespace gfx {
struct VectorIcon;
}
namespace infobars {
class ContentInfoBarManager;
}
void CreateSimpleAlertInfoBar(
infobars::ContentInfoBarManager* infobar_manager,
infobars::InfoBarDelegate::InfoBarIdentifier infobar_identifier,
const gfx::VectorIcon* vector_icon,
const std::u16string& message,
bool auto_expire = true,
bool should_animate = true,
bool closeable = true);
#endif