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

Unified Diff: components/autofill/core/browser/webdata/autofill_table.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/autofill/core/browser/webdata/autofill_table.h
diff --git a/components/autofill/core/browser/webdata/autofill_table.h b/components/autofill/core/browser/webdata/autofill_table.h
index 660219d7dab0166c4571cb7b79349f16442a739c..abc64000420186be4bd613dbbfdd7e571a05e901 100644
--- a/components/autofill/core/browser/webdata/autofill_table.h
+++ b/components/autofill/core/browser/webdata/autofill_table.h
@@ -133,11 +133,11 @@ class AutofillTable : public WebDatabaseTable {
// Retrieves the AutofillTable* owned by |database|.
static AutofillTable* FromWebDatabase(WebDatabase* db);
- virtual WebDatabaseTable::TypeKey GetTypeKey() const OVERRIDE;
- virtual bool CreateTablesIfNecessary() OVERRIDE;
- virtual bool IsSyncable() OVERRIDE;
+ virtual WebDatabaseTable::TypeKey GetTypeKey() const override;
+ virtual bool CreateTablesIfNecessary() override;
+ virtual bool IsSyncable() override;
virtual bool MigrateToVersion(int version,
- bool* update_compatible_version) OVERRIDE;
+ bool* update_compatible_version) override;
// Records the form elements in |elements| in the database in the
// autofill table. A list of all added and updated autofill entries

Powered by Google App Engine
This is Rietveld 408576698