diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 04:24:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 11:25:34 +0000 |
commit | 00ea022b81af00857b352bae68d4ba2eb3e1493b (patch) | |
tree | b5e3e536a25f154ab5410d611736832c11b2cfad /components/search_engines/keyword_table.h | |
parent | 0b0885ca539071e7864061fde54c7345a0fd2aae (diff) | |
download | chromium_src-00ea022b81af00857b352bae68d4ba2eb3e1493b.zip chromium_src-00ea022b81af00857b352bae68d4ba2eb3e1493b.tar.gz chromium_src-00ea022b81af00857b352bae68d4ba2eb3e1493b.tar.bz2 |
Standardize usage of virtual/override/final in components/
BUG=417463
TBR=blundell@chromium.org
Review URL: https://codereview.chromium.org/666133002
Cr-Commit-Position: refs/heads/master@{#300456}
Diffstat (limited to 'components/search_engines/keyword_table.h')
-rw-r--r-- | components/search_engines/keyword_table.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/components/search_engines/keyword_table.h b/components/search_engines/keyword_table.h index 7c8bc2a..a62ff57 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 |