| Index: components/history/core/browser/url_database_unittest.cc
|
| diff --git a/components/history/core/browser/url_database_unittest.cc b/components/history/core/browser/url_database_unittest.cc
|
| index 000d70cf6fbd719dc6c552858421d11c9ae69b36..1ecced9f62a6ca9b158697a5788ff527c9ba1e60 100644
|
| --- a/components/history/core/browser/url_database_unittest.cc
|
| +++ b/components/history/core/browser/url_database_unittest.cc
|
| @@ -45,7 +45,7 @@ class URLDatabaseTest : public testing::Test,
|
|
|
| private:
|
| // Test setup.
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| base::FilePath db_file = temp_dir_.path().AppendASCII("URLTest.db");
|
|
|
| @@ -57,9 +57,7 @@ class URLDatabaseTest : public testing::Test,
|
| InitKeywordSearchTermsTable();
|
| CreateKeywordSearchTermsIndices();
|
| }
|
| - virtual void TearDown() {
|
| - db_.Close();
|
| - }
|
| + void TearDown() override { db_.Close(); }
|
|
|
| base::ScopedTempDir temp_dir_;
|
| sql::Connection db_;
|
|
|