Chromium Code Reviews| Index: chrome/browser/ui/views/crypto_module_password_dialog_view.h |
| diff --git a/chrome/browser/ui/views/crypto_module_password_dialog_view.h b/chrome/browser/ui/views/crypto_module_password_dialog_view.h |
| index ec8c83a23ed7617171bc34e6b55cd4def081cbc1..3b8bfe6afcbffe8ef43956f487f9174a7cc0ef8a 100644 |
| --- a/chrome/browser/ui/views/crypto_module_password_dialog_view.h |
| +++ b/chrome/browser/ui/views/crypto_module_password_dialog_view.h |
| @@ -34,28 +34,28 @@ class CryptoModulePasswordDialogView : public views::DialogDelegateView, |
| const std::string& server, |
| const base::Callback<void(const char*)>& callback); |
| - virtual ~CryptoModulePasswordDialogView() {} |
| + virtual ~CryptoModulePasswordDialogView(); |
| // views::DialogDelegate: |
| - virtual bool Accept(); |
| - virtual bool Cancel(); |
| + virtual bool Accept() OVERRIDE; |
| + virtual bool Cancel() OVERRIDE; |
| string16 GetDialogButtonLabel( |
|
Nikita (slow)
2011/12/01 15:48:01
Missing virtual here.
http://build.chromium.org/p/
|
| - ui::DialogButton button) const; |
| + ui::DialogButton button) const OVERRIDE; |
| // views::WidgetDelegate: |
| - virtual views::View* GetInitiallyFocusedView(); |
| - virtual bool IsModal() const; |
| - virtual views::View* GetContentsView(); |
| + virtual views::View* GetInitiallyFocusedView() OVERRIDE; |
| + virtual bool IsModal() const OVERRIDE; |
| + virtual views::View* GetContentsView() OVERRIDE; |
| // views::View: |
| - virtual string16 GetWindowTitle() const; |
| + virtual string16 GetWindowTitle() const OVERRIDE; |
| // views::TextfieldController: |
| virtual bool HandleKeyEvent(views::Textfield* sender, |
| - const views::KeyEvent& keystroke); |
| + const views::KeyEvent& keystroke) OVERRIDE; |
| virtual void ContentsChanged(views::Textfield* sender, |
| - const string16& new_contents) {} |
| + const string16& new_contents) OVERRIDE; |
| private: |
| // Initialize views and layout. |