| 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
|
|
|