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

Unified Diff: chrome/browser/android/password_ui_view_android.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs Created 6 years, 2 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/android/password_ui_view_android.h
diff --git a/chrome/browser/android/password_ui_view_android.h b/chrome/browser/android/password_ui_view_android.h
index 68b71bff2be8e7979c35826cb769b0f3be839d8d..35071a33db9e553b5ef23d7438cf43bde9609ee1 100644
--- a/chrome/browser/android/password_ui_view_android.h
+++ b/chrome/browser/android/password_ui_view_android.h
@@ -24,15 +24,15 @@ class PasswordUIViewAndroid : public PasswordUIView {
virtual ~PasswordUIViewAndroid();
// PasswordUIView implementation.
- virtual Profile* GetProfile() OVERRIDE;
+ virtual Profile* GetProfile() override;
virtual void ShowPassword(size_t index, const base::string16& password_value)
- OVERRIDE;
+ override;
virtual void SetPasswordList(
const ScopedVector<autofill::PasswordForm>& password_list,
- bool show_passwords) OVERRIDE;
+ bool show_passwords) override;
virtual void SetPasswordExceptionList(
const ScopedVector<autofill::PasswordForm>& password_exception_list)
- OVERRIDE;
+ override;
// Calls from Java.
base::android::ScopedJavaLocalRef<jobject> GetSavedPasswordEntry(

Powered by Google App Engine
This is Rietveld 408576698