| Index: base/message_loop_proxy_unittest.cc
|
| diff --git a/base/message_loop_proxy_unittest.cc b/base/message_loop_proxy_unittest.cc
|
| index 2fdef130940a7c53a683eb2b58d2c2f683b6ae9b..4776502413bc7956f0e69b32c250dd1f622cfb21 100644
|
| --- a/base/message_loop_proxy_unittest.cc
|
| +++ b/base/message_loop_proxy_unittest.cc
|
| @@ -31,7 +31,7 @@ class MessageLoopProxyTest : public testing::Test {
|
| }
|
|
|
| protected:
|
| - virtual void SetUp() {
|
| + virtual 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() {
|
| + virtual 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.
|
|
|