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

Unified Diff: components/history/core/browser/android/visit_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/visit_sql_handler.h
diff --git a/components/history/core/browser/android/visit_sql_handler.h b/components/history/core/browser/android/visit_sql_handler.h
index 0f59a0a0592f24fb01a38297d98a0b42b0d2e265..6c4a6db8420f9c17db0aae5af27548449ea33737 100644
--- a/components/history/core/browser/android/visit_sql_handler.h
+++ b/components/history/core/browser/android/visit_sql_handler.h
@@ -20,13 +20,13 @@ class VisitDatabase;
class VisitSQLHandler : public SQLHandler {
public:
VisitSQLHandler(URLDatabase* url_db, VisitDatabase* visit_db);
- virtual ~VisitSQLHandler();
+ ~VisitSQLHandler() override;
// Overriden from SQLHandler.
- virtual bool Update(const HistoryAndBookmarkRow& row,
- const TableIDRows& ids_set) override;
- virtual bool Insert(HistoryAndBookmarkRow* row) override;
- virtual bool Delete(const TableIDRows& ids_set) override;
+ bool Update(const HistoryAndBookmarkRow& row,
+ const TableIDRows& ids_set) override;
+ bool Insert(HistoryAndBookmarkRow* row) override;
+ bool Delete(const TableIDRows& ids_set) override;
private:
// Add a row in visit table with the given |url_id| and |visit_time|.
« no previous file with comments | « components/history/core/browser/android/urls_sql_handler.h ('k') | components/invalidation/invalidation_service_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698