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

Unified Diff: chrome/browser/chromeos/options/passphrase_textfield.h

Issue 854043002: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/options. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months 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/options/passphrase_textfield.h
diff --git a/chrome/browser/chromeos/options/passphrase_textfield.h b/chrome/browser/chromeos/options/passphrase_textfield.h
index 39834ef4844c397002a657d87f25c2995b7aa764..03135fe31adf43be9943e0045d00346ac5954cb1 100644
--- a/chrome/browser/chromeos/options/passphrase_textfield.h
+++ b/chrome/browser/chromeos/options/passphrase_textfield.h
@@ -21,8 +21,8 @@ class PassphraseTextfield : public views::Textfield {
// Override views::Textfield so that when focus is gained, then clear out the
// fake password if appropriate. Replace it when focus is lost if the user has
// not typed in a new password.
- virtual void OnFocus() override;
- virtual void OnBlur() override;
+ void OnFocus() override;
+ void OnBlur() override;
// Returns the passphrase. If it's unchanged, then returns an empty string.
std::string GetPassphrase();

Powered by Google App Engine
This is Rietveld 408576698