| Index: net/cert/nss_cert_database_unittest.cc
|
| diff --git a/net/cert/nss_cert_database_unittest.cc b/net/cert/nss_cert_database_unittest.cc
|
| index 6007452e3d354a1b69e71365aa0b8d6572d0ced8..c5f05b59cd731da04998b129a95a1196b4fd65df 100644
|
| --- a/net/cert/nss_cert_database_unittest.cc
|
| +++ b/net/cert/nss_cert_database_unittest.cc
|
| @@ -55,7 +55,7 @@ void SwapCertList(CertificateList* destination,
|
|
|
| class CertDatabaseNSSTest : public testing::Test {
|
| public:
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| ASSERT_TRUE(test_nssdb_.is_open());
|
| cert_db_.reset(new NSSCertDatabase(
|
| crypto::ScopedPK11Slot(
|
| @@ -68,7 +68,7 @@ class CertDatabaseNSSTest : public testing::Test {
|
| EXPECT_EQ(0U, ListCerts().size());
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| // Run the message loop to process any observer callbacks (e.g. for the
|
| // ClientSocketFactory singleton) so that the scoped ref ptrs created in
|
| // NSSCertDatabase::NotifyObservers* get released.
|
|
|