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

Unified Diff: chrome/browser/webdata/token_service_table.h

Issue 8614003: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « chrome/browser/webdata/logins_table.h ('k') | chrome/browser/webdata/web_apps_table.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/token_service_table.h
diff --git a/chrome/browser/webdata/token_service_table.h b/chrome/browser/webdata/token_service_table.h
index ebb455a5f4df1d9f387773919c1b67bd9b79e2b3..a9ad849a62812b0b9512585a9258e8919faac817 100644
--- a/chrome/browser/webdata/token_service_table.h
+++ b/chrome/browser/webdata/token_service_table.h
@@ -9,6 +9,7 @@
#include <map>
#include <string>
+#include "base/compiler_specific.h"
#include "chrome/browser/webdata/web_database_table.h"
class TokenServiceTable : public WebDatabaseTable {
@@ -16,8 +17,8 @@ class TokenServiceTable : public WebDatabaseTable {
TokenServiceTable(sql::Connection* db, sql::MetaTable* meta_table)
: WebDatabaseTable(db, meta_table) {}
virtual ~TokenServiceTable() {}
- virtual bool Init();
- virtual bool IsSyncable();
+ virtual bool Init() OVERRIDE;
+ virtual bool IsSyncable() OVERRIDE;
// Remove all tokens previously set with SetTokenForService.
bool RemoveAllTokens();
« no previous file with comments | « chrome/browser/webdata/logins_table.h ('k') | chrome/browser/webdata/web_apps_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698