| Index: jingle/notifier/listener/non_blocking_push_client_unittest.cc
|
| diff --git a/jingle/notifier/listener/non_blocking_push_client_unittest.cc b/jingle/notifier/listener/non_blocking_push_client_unittest.cc
|
| index 0066aa9b84376844727e415593f9e5417a0af609..8b7dac52a8e2392e167624ecf37f11df684db2b6 100644
|
| --- a/jingle/notifier/listener/non_blocking_push_client_unittest.cc
|
| +++ b/jingle/notifier/listener/non_blocking_push_client_unittest.cc
|
| @@ -24,9 +24,9 @@ class NonBlockingPushClientTest : public testing::Test {
|
| protected:
|
| NonBlockingPushClientTest() : fake_push_client_(NULL) {}
|
|
|
| - virtual ~NonBlockingPushClientTest() {}
|
| + ~NonBlockingPushClientTest() override {}
|
|
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| push_client_.reset(
|
| new NonBlockingPushClient(
|
| base::MessageLoopProxy::current(),
|
| @@ -37,7 +37,7 @@ class NonBlockingPushClientTest : public testing::Test {
|
| message_loop_.RunUntilIdle();
|
| }
|
|
|
| - virtual void TearDown() override {
|
| + void TearDown() override {
|
| // Clear out any pending notifications before removing observers.
|
| message_loop_.RunUntilIdle();
|
| push_client_->RemoveObserver(&fake_observer_);
|
|
|