| Index: base/threading/thread_unittest.cc
|
| diff --git a/base/threading/thread_unittest.cc b/base/threading/thread_unittest.cc
|
| index c7cb76abec6eb8e9af6e47888f93794edf10eb49..0499e073bf310b22d990426178c5eb1c06d0b63a 100644
|
| --- a/base/threading/thread_unittest.cc
|
| +++ b/base/threading/thread_unittest.cc
|
| @@ -43,7 +43,10 @@ class SleepSome : public Task {
|
|
|
| class SleepInsideInitThread : public Thread {
|
| public:
|
| - SleepInsideInitThread() : Thread("none") { init_called_ = false; }
|
| + SleepInsideInitThread() : Thread("none") {
|
| + init_called_ = false;
|
| + ANNOTATE_BENIGN_RACE(this, "http://crbug.com/98219");
|
| + }
|
| virtual ~SleepInsideInitThread() { }
|
|
|
| virtual void Init() {
|
|
|