| Index: components/nacl/loader/nacl_ipc_adapter_unittest.cc
|
| diff --git a/components/nacl/loader/nacl_ipc_adapter_unittest.cc b/components/nacl/loader/nacl_ipc_adapter_unittest.cc
|
| index 99f4638a485545edc9008a8bd527f3d94f9862c1..826b41d535d526c05a1e1a0a13eaccae88922ff4 100644
|
| --- a/components/nacl/loader/nacl_ipc_adapter_unittest.cc
|
| +++ b/components/nacl/loader/nacl_ipc_adapter_unittest.cc
|
| @@ -24,7 +24,7 @@ class NaClIPCAdapterTest : public testing::Test {
|
| NaClIPCAdapterTest() {}
|
|
|
| // testing::Test implementation.
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| sink_ = new IPC::TestSink;
|
|
|
| // Takes ownership of the sink_ pointer. Note we provide the current message
|
| @@ -33,7 +33,7 @@ class NaClIPCAdapterTest : public testing::Test {
|
| adapter_ = new NaClIPCAdapter(scoped_ptr<IPC::Channel>(sink_),
|
| base::MessageLoopProxy::current().get());
|
| }
|
| - virtual void TearDown() override {
|
| + void TearDown() override {
|
| sink_ = NULL; // This pointer is actually owned by the IPCAdapter.
|
| adapter_ = NULL;
|
| // The adapter destructor has to post a task to destroy the Channel on the
|
|
|