#ifndef CHROME_BROWSER_UI_GTK_INFOBARS_BEFORE_TRANSLATE_INFOBAR_GTK_H_
#define CHROME_BROWSER_UI_GTK_INFOBARS_BEFORE_TRANSLATE_INFOBAR_GTK_H_
#include "base/compiler_specific.h"
#include "chrome/browser/ui/gtk/infobars/translate_infobar_base_gtk.h"
class TranslateInfoBarDelegate;
class BeforeTranslateInfoBar : public TranslateInfoBarBase {
public:
explicit BeforeTranslateInfoBar(
scoped_ptr<TranslateInfoBarDelegate> delegate);
private:
virtual ~BeforeTranslateInfoBar();
virtual void PlatformSpecificSetOwner() OVERRIDE;
virtual bool ShowOptionsMenuButton() const OVERRIDE;
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnLanguageModified);
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnAcceptPressed);
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnDenyPressed);
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnNeverTranslatePressed);
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnAlwaysTranslatePressed);
DISALLOW_COPY_AND_ASSIGN(BeforeTranslateInfoBar);
};
#endif