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

Unified Diff: chrome/browser/webdata/web_apps_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/token_service_table.h ('k') | chrome/browser/webdata/web_intents_table.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/web_apps_table.h
diff --git a/chrome/browser/webdata/web_apps_table.h b/chrome/browser/webdata/web_apps_table.h
index b39ac9c19ee0b3f9d3ea1babf4e0b7648b739fa1..1222f5d8febd6551a7053d428c234002c3008677 100644
--- a/chrome/browser/webdata/web_apps_table.h
+++ b/chrome/browser/webdata/web_apps_table.h
@@ -8,6 +8,7 @@
#include <vector>
+#include "base/compiler_specific.h"
#include "chrome/browser/webdata/web_database_table.h"
class GURL;
@@ -33,8 +34,8 @@ class WebAppsTable : public WebDatabaseTable {
WebAppsTable(sql::Connection* db, sql::MetaTable* meta_table)
: WebDatabaseTable(db, meta_table) {}
virtual ~WebAppsTable() {}
- virtual bool Init();
- virtual bool IsSyncable();
+ virtual bool Init() OVERRIDE;
+ virtual bool IsSyncable() OVERRIDE;
bool SetWebAppImage(const GURL& url, const SkBitmap& image);
bool GetWebAppImages(const GURL& url, std::vector<SkBitmap>* images);
« no previous file with comments | « chrome/browser/webdata/token_service_table.h ('k') | chrome/browser/webdata/web_intents_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698