| Index: chrome/browser/ui/views/infobars/before_translate_infobar.h
|
| diff --git a/chrome/browser/ui/views/infobars/before_translate_infobar.h b/chrome/browser/ui/views/infobars/before_translate_infobar.h
|
| index f7e0ad0a4e0f2855878257b6acecf8c82744a223..dbc451bfac77c9e4d31aa9989816763da25d9f4a 100644
|
| --- a/chrome/browser/ui/views/infobars/before_translate_infobar.h
|
| +++ b/chrome/browser/ui/views/infobars/before_translate_infobar.h
|
| @@ -27,14 +27,18 @@ class BeforeTranslateInfoBar : public TranslateInfoBarBase,
|
| virtual ~BeforeTranslateInfoBar();
|
|
|
| // TranslateInfoBarBase:
|
| - virtual void Layout();
|
| - virtual void ButtonPressed(views::Button* sender, const views::Event& event);
|
| - virtual void ViewHierarchyChanged(bool is_add, View* parent, View* child);
|
| - virtual int ContentMinimumWidth() const;
|
| - virtual void OriginalLanguageChanged();
|
| + virtual void Layout() OVERRIDE;
|
| + virtual void ButtonPressed(views::Button* sender,
|
| + const views::Event& event) OVERRIDE;
|
| + virtual void ViewHierarchyChanged(bool is_add,
|
| + View* parent,
|
| + View* child) OVERRIDE;
|
| + virtual int ContentMinimumWidth() const OVERRIDE;
|
| + virtual void OriginalLanguageChanged() OVERRIDE;
|
| + virtual void CancelMenu() OVERRIDE;
|
|
|
| // views::ViewMenuDelegate:
|
| - virtual void RunMenu(View* source, const gfx::Point& pt);
|
| + virtual void RunMenu(View* source, const gfx::Point& pt) OVERRIDE;
|
|
|
| // The text displayed in the infobar is something like:
|
| // "The page is in <lang>. Would you like to translate it?"
|
|
|