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

Unified Diff: components/history/core/browser/android/android_urls_sql_handler.h

Issue 893303003: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/history/core/browser/android/android_urls_sql_handler.h
diff --git a/components/history/core/browser/android/android_urls_sql_handler.h b/components/history/core/browser/android/android_urls_sql_handler.h
index 806f2cd9e12a7cf2e44c295a6384545894bad539..2c5f7b5f92ac091dccf22785a282bb807a3e0cb1 100644
--- a/components/history/core/browser/android/android_urls_sql_handler.h
+++ b/components/history/core/browser/android/android_urls_sql_handler.h
@@ -15,14 +15,14 @@ class AndroidURLsDatabase;
class AndroidURLsSQLHandler : public SQLHandler {
public:
explicit AndroidURLsSQLHandler(AndroidURLsDatabase* android_urls_db);
- virtual ~AndroidURLsSQLHandler();
+ ~AndroidURLsSQLHandler() override;
- virtual bool Update(const HistoryAndBookmarkRow& row,
- const TableIDRows& ids_set) override;
+ bool Update(const HistoryAndBookmarkRow& row,
+ const TableIDRows& ids_set) override;
- virtual bool Insert(HistoryAndBookmarkRow* row) override;
+ bool Insert(HistoryAndBookmarkRow* row) override;
- virtual bool Delete(const TableIDRows& ids_set) override;
+ bool Delete(const TableIDRows& ids_set) override;
private:
AndroidURLsDatabase* android_urls_db_;
« no previous file with comments | « components/gcm_driver/gcm_driver_android.h ('k') | components/history/core/browser/android/favicon_sql_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698