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

Unified Diff: components/search_engines/keyword_table.h

Issue 666133002: Standardize usage of virtual/override/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/search_engines/keyword_table.h
diff --git a/components/search_engines/keyword_table.h b/components/search_engines/keyword_table.h
index 7c8bc2ae81c8044652d80ceb522086e858e67f2c..a62ff573ecf454192444b6899a025523e8954f81 100644
--- a/components/search_engines/keyword_table.h
+++ b/components/search_engines/keyword_table.h
@@ -92,16 +92,15 @@ class KeywordTable : public WebDatabaseTable {
static const char kDefaultSearchProviderKey[];
KeywordTable();
- virtual ~KeywordTable();
+ ~KeywordTable() override;
// Retrieves the KeywordTable* owned by |database|.
static KeywordTable* FromWebDatabase(WebDatabase* db);
- virtual WebDatabaseTable::TypeKey GetTypeKey() const override;
- virtual bool CreateTablesIfNecessary() override;
- virtual bool IsSyncable() override;
- virtual bool MigrateToVersion(int version,
- bool* update_compatible_version) override;
+ WebDatabaseTable::TypeKey GetTypeKey() const override;
+ bool CreateTablesIfNecessary() override;
+ bool IsSyncable() override;
+ bool MigrateToVersion(int version, bool* update_compatible_version) override;
// Performs an arbitrary number of Add/Remove/Update operations as a single
// transaction. This is provided for efficiency reasons: if the caller needs
« no previous file with comments | « components/search_engines/default_search_policy_handler.h ('k') | components/search_engines/keyword_web_data_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698