| Index: chrome/browser/nacl_host/nacl_infobar_delegate.h
|
| diff --git a/chrome/browser/nacl_host/nacl_infobar_delegate.h b/chrome/browser/nacl_host/nacl_infobar_delegate.h
|
| index 54efbf575c3f0ebbde5e98970958e6db25ab8798..9b27f47c01e3ccd55258828cb8d17036ef4b8304 100644
|
| --- a/chrome/browser/nacl_host/nacl_infobar_delegate.h
|
| +++ b/chrome/browser/nacl_host/nacl_infobar_delegate.h
|
| @@ -15,12 +15,12 @@ class NaClInfoBarDelegate : public ConfirmInfoBarDelegate {
|
|
|
| private:
|
| NaClInfoBarDelegate();
|
| - virtual ~NaClInfoBarDelegate();
|
| + ~NaClInfoBarDelegate() override;
|
|
|
| - virtual base::string16 GetMessageText() const override;
|
| - virtual int GetButtons() const override;
|
| - virtual base::string16 GetLinkText() const override;
|
| - virtual bool LinkClicked(WindowOpenDisposition disposition) override;
|
| + base::string16 GetMessageText() const override;
|
| + int GetButtons() const override;
|
| + base::string16 GetLinkText() const override;
|
| + bool LinkClicked(WindowOpenDisposition disposition) override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(NaClInfoBarDelegate);
|
| };
|
|
|