| Index: ipc/ipc_channel_proxy_unittest.cc
|
| diff --git a/ipc/ipc_channel_proxy_unittest.cc b/ipc/ipc_channel_proxy_unittest.cc
|
| index 848367ec782bd2e481d7b3deba85b8b916ae09a0..6ed2470f96b5d5d52642d0e684cbd8b969105da3 100644
|
| --- a/ipc/ipc_channel_proxy_unittest.cc
|
| +++ b/ipc/ipc_channel_proxy_unittest.cc
|
| @@ -232,9 +232,9 @@ class MessageCountFilter : public IPC::MessageFilter {
|
| class IPCChannelProxyTest : public IPCTestBase {
|
| public:
|
| IPCChannelProxyTest() {}
|
| - virtual ~IPCChannelProxyTest() {}
|
| + ~IPCChannelProxyTest() override {}
|
|
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| IPCTestBase::SetUp();
|
|
|
| Init("ChannelProxyClient");
|
| @@ -250,7 +250,7 @@ class IPCChannelProxyTest : public IPCTestBase {
|
| ASSERT_TRUE(StartClient());
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| DestroyChannelProxy();
|
| thread_.reset();
|
| listener_.reset();
|
|
|