diff options
Diffstat (limited to 'base/message_loop/message_loop_proxy_unittest.cc')
-rw-r--r-- | base/message_loop/message_loop_proxy_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/message_loop/message_loop_proxy_unittest.cc b/base/message_loop/message_loop_proxy_unittest.cc index 673ed88..0b0d9f8 100644 --- a/base/message_loop/message_loop_proxy_unittest.cc +++ b/base/message_loop/message_loop_proxy_unittest.cc @@ -31,7 +31,7 @@ class MessageLoopProxyTest : public testing::Test { } protected: - virtual void SetUp() override { + void SetUp() override { // Use SetUp() instead of the constructor to avoid posting a task to a // partialy constructed object. task_thread_.Start(); @@ -42,7 +42,7 @@ class MessageLoopProxyTest : public testing::Test { Bind(&MessageLoopProxyTest::BlockTaskThreadHelper, Unretained(this))); } - virtual void TearDown() override { + void TearDown() override { // Make sure the |task_thread_| is not blocked, and stop the thread // fully before destuction because its tasks may still depend on the // |thread_sync_| event. |