Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1423)

Unified Diff: chrome/browser/ui/views/crypto_module_password_dialog_view.h

Issue 8761010: fix broken linux_clang_chromeos_dbg build due to style violation. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: update Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/views/crypto_module_password_dialog_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | chrome/browser/ui/views/crypto_module_password_dialog_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698