| Index: dbus/end_to_end_sync_unittest.cc
|
| diff --git a/dbus/end_to_end_sync_unittest.cc b/dbus/end_to_end_sync_unittest.cc
|
| index e3b316ab6f8afd3c958684218daba689a898d366..1167d96650b3b536a3bc08154ae8663f2452859b 100644
|
| --- a/dbus/end_to_end_sync_unittest.cc
|
| +++ b/dbus/end_to_end_sync_unittest.cc
|
| @@ -21,7 +21,7 @@ class EndToEndSyncTest : public testing::Test {
|
| EndToEndSyncTest() {
|
| }
|
|
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| // Start the test service;
|
| TestService::Options options;
|
| test_service_.reset(new TestService(options));
|
| @@ -40,7 +40,7 @@ class EndToEndSyncTest : public testing::Test {
|
| ASSERT_FALSE(client_bus_->HasDBusThread());
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| test_service_->ShutdownAndBlock();
|
| test_service_->Stop();
|
| client_bus_->ShutdownAndBlock();
|
|
|