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

Unified Diff: chrome/browser/ui/webui/options/password_manager_handler.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ui/webui/options/password_manager_handler.h
diff --git a/chrome/browser/ui/webui/options/password_manager_handler.h b/chrome/browser/ui/webui/options/password_manager_handler.h
index bae096bcbfc32b7f847e5adb06b720b6337b48fd..9e41b7ad95835919f4d4abb0a0ac8f9ae234c922 100644
--- a/chrome/browser/ui/webui/options/password_manager_handler.h
+++ b/chrome/browser/ui/webui/options/password_manager_handler.h
@@ -24,22 +24,22 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
// OptionsPageUIHandler implementation.
virtual void GetLocalizedValues(
- base::DictionaryValue* localized_strings) OVERRIDE;
- virtual void InitializeHandler() OVERRIDE;
- virtual void RegisterMessages() OVERRIDE;
+ base::DictionaryValue* localized_strings) override;
+ virtual void InitializeHandler() override;
+ virtual void RegisterMessages() override;
// 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;
#if !defined(OS_ANDROID)
- virtual gfx::NativeWindow GetNativeWindow() OVERRIDE;
+ virtual gfx::NativeWindow GetNativeWindow() override;
#endif
private:
// Clears and then populates the list of passwords and password exceptions.
« no previous file with comments | « chrome/browser/ui/webui/options/options_ui_browsertest.cc ('k') | chrome/browser/ui/webui/options/preferences_browsertest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698