| Index: components/invalidation/sync_system_resources_unittest.cc
|
| diff --git a/components/invalidation/sync_system_resources_unittest.cc b/components/invalidation/sync_system_resources_unittest.cc
|
| index ea2fb52e43bdf46c0faacae6c36c84faece786fd..3501f1eec3accad90fea2f11f9bb63f3168f88cc 100644
|
| --- a/components/invalidation/sync_system_resources_unittest.cc
|
| +++ b/components/invalidation/sync_system_resources_unittest.cc
|
| @@ -54,7 +54,7 @@ class SyncSystemResourcesTest : public testing::Test {
|
| scoped_ptr<notifier::PushClient>(new notifier::FakePushClient())),
|
| sync_system_resources_(&push_client_channel_, &mock_state_writer_) {}
|
|
|
| - virtual ~SyncSystemResourcesTest() {}
|
| + ~SyncSystemResourcesTest() override {}
|
|
|
| void ScheduleShouldNotRun() {
|
| {
|
| @@ -212,9 +212,7 @@ class SyncNetworkChannelTest
|
| this, &SyncNetworkChannelTest::OnNetworkStatusChange));
|
| }
|
|
|
| - virtual ~SyncNetworkChannelTest() {
|
| - network_channel_.RemoveObserver(this);
|
| - }
|
| + ~SyncNetworkChannelTest() override { network_channel_.RemoveObserver(this); }
|
|
|
| void OnNetworkChannelStateChanged(
|
| InvalidatorState invalidator_state) override {
|
|
|