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

Unified Diff: components/signin/core/browser/webdata/token_service_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/signin/core/browser/webdata/token_service_table.h
diff --git a/components/signin/core/browser/webdata/token_service_table.h b/components/signin/core/browser/webdata/token_service_table.h
index b4a1d8db69a3f8bf84b4dd8692a2156e458c20de..8cc702723b3a3da527272a9cd48d463380753a24 100644
--- a/components/signin/core/browser/webdata/token_service_table.h
+++ b/components/signin/core/browser/webdata/token_service_table.h
@@ -16,16 +16,15 @@ class WebDatabase;
class TokenServiceTable : public WebDatabaseTable {
public:
TokenServiceTable() {}
- virtual ~TokenServiceTable() {}
+ ~TokenServiceTable() override {}
// Retrieves the TokenServiceTable* owned by |database|.
static TokenServiceTable* 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;
// Remove all tokens previously set with SetTokenForService.
bool RemoveAllTokens();
« no previous file with comments | « components/signin/core/browser/test_signin_client.h ('k') | components/signin/core/browser/webdata/token_web_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698