#ifndef COMPONENTS_INFOBARS_CONTENT_CONTENT_INFOBAR_MANAGER_H_
#define COMPONENTS_INFOBARS_CONTENT_CONTENT_INFOBAR_MANAGER_H_
#include "build/build_config.h"
#include "components/infobars/core/infobar_manager.h"
#include "content/public/browser/reload_type.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
#include "ui/base/window_open_disposition.h"
namespace content {
struct LoadCommittedDetails;
class WebContents;
}
namespace infobars {
class InfoBar;
class ContentInfoBarManager
: public InfoBarManager,
public content::WebContentsObserver,
public content::WebContentsUserData<ContentInfoBarManager> { … };
}
#endif