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

Unified Diff: chrome/browser/password_manager/native_backend_gnome_x.h

Issue 682613003: Standardize usage of virtual/override/final specifiers. (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
« no previous file with comments | « no previous file | chrome/browser/password_manager/native_backend_gnome_x_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/native_backend_gnome_x.h
diff --git a/chrome/browser/password_manager/native_backend_gnome_x.h b/chrome/browser/password_manager/native_backend_gnome_x.h
index 34edd660897264e58920da877fe71071017b5311..8418739f295758b38c8bd97e87a03793e3f5220c 100644
--- a/chrome/browser/password_manager/native_backend_gnome_x.h
+++ b/chrome/browser/password_manager/native_backend_gnome_x.h
@@ -86,29 +86,28 @@ class NativeBackendGnome : public PasswordStoreX::NativeBackend,
public:
explicit NativeBackendGnome(LocalProfileId id);
- virtual ~NativeBackendGnome();
+ ~NativeBackendGnome() override;
- virtual bool Init() override;
+ bool Init() override;
// Implements NativeBackend interface.
- virtual password_manager::PasswordStoreChangeList AddLogin(
+ password_manager::PasswordStoreChangeList AddLogin(
const autofill::PasswordForm& form) override;
- virtual bool UpdateLogin(
- const autofill::PasswordForm& form,
- password_manager::PasswordStoreChangeList* changes) override;
- virtual bool RemoveLogin(const autofill::PasswordForm& form) override;
- virtual bool RemoveLoginsCreatedBetween(
+ bool UpdateLogin(const autofill::PasswordForm& form,
+ password_manager::PasswordStoreChangeList* changes) override;
+ bool RemoveLogin(const autofill::PasswordForm& form) override;
+ bool RemoveLoginsCreatedBetween(
base::Time delete_begin,
base::Time delete_end,
password_manager::PasswordStoreChangeList* changes) override;
- virtual bool RemoveLoginsSyncedBetween(
+ bool RemoveLoginsSyncedBetween(
base::Time delete_begin,
base::Time delete_end,
password_manager::PasswordStoreChangeList* changes) override;
- virtual bool GetLogins(const autofill::PasswordForm& form,
- PasswordFormList* forms) override;
- virtual bool GetAutofillableLogins(PasswordFormList* forms) override;
- virtual bool GetBlacklistLogins(PasswordFormList* forms) override;
+ bool GetLogins(const autofill::PasswordForm& form,
+ PasswordFormList* forms) override;
+ bool GetAutofillableLogins(PasswordFormList* forms) override;
+ bool GetBlacklistLogins(PasswordFormList* forms) override;
private:
enum TimestampToCompare {
« no previous file with comments | « no previous file | chrome/browser/password_manager/native_backend_gnome_x_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698