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

Unified Diff: components/history/core/browser/in_memory_database.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/history/core/browser/in_memory_database.h
diff --git a/components/history/core/browser/in_memory_database.h b/components/history/core/browser/in_memory_database.h
index 6a010dec5e198e194b09d99d31ec4a0bd0717df3..9730f1ee0106d40085344cf2c752ba0cb2b2048e 100644
--- a/components/history/core/browser/in_memory_database.h
+++ b/components/history/core/browser/in_memory_database.h
@@ -21,7 +21,7 @@ namespace history {
class InMemoryDatabase : public URLDatabase {
public:
InMemoryDatabase();
- virtual ~InMemoryDatabase();
+ ~InMemoryDatabase() override;
// Creates an empty in-memory database.
bool InitFromScratch();
@@ -34,7 +34,7 @@ class InMemoryDatabase : public URLDatabase {
protected:
// Implemented for URLDatabase.
- virtual sql::Connection& GetDB() override;
+ sql::Connection& GetDB() override;
private:
// Initializes the database connection, this is the shared code between

Powered by Google App Engine
This is Rietveld 408576698