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

Unified Diff: chrome/browser/chromeos/login/password_changed_view.h

Issue 3583013: [cros] Add blocking UI on offline: OK, online auth: fail case. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: remove debug logging Created 10 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
Index: chrome/browser/chromeos/login/password_changed_view.h
diff --git a/chrome/browser/chromeos/login/password_changed_view.h b/chrome/browser/chromeos/login/password_changed_view.h
index b7d45da6f8e327563eb41b3a42f00f46473d3c67..706e53bebb899b13489eeaf9da1ee6319c1bf8b7 100644
--- a/chrome/browser/chromeos/login/password_changed_view.h
+++ b/chrome/browser/chromeos/login/password_changed_view.h
@@ -63,7 +63,9 @@ class PasswordChangedView : public views::View,
// views::Textfield::Controller overrides:
virtual bool HandleKeystroke(views::Textfield* sender,
- const views::Textfield::Keystroke& keystroke);
+ const views::Textfield::Keystroke& keystroke) {
+ return false;
whywhat 2010/11/25 15:40:37 Maybe just remove override?
Nikita (slow) 2010/11/29 11:20:25 It's a virtual method, needs to be declared.
whywhat 2010/11/29 12:03:51 Ah, sorry, I missed the fact that it's a pure virt
+ }
virtual void ContentsChanged(views::Textfield* sender,
const string16& new_contents) {}

Powered by Google App Engine
This is Rietveld 408576698