| Index: base/threading/sequenced_worker_pool.cc
|
| diff --git a/base/threading/sequenced_worker_pool.cc b/base/threading/sequenced_worker_pool.cc
|
| index b206ae00f1108cea001fa0f5f238aafe7f5042c5..8cabfa9aecd59c968b7cb49b2581293b25a5cd2d 100644
|
| --- a/base/threading/sequenced_worker_pool.cc
|
| +++ b/base/threading/sequenced_worker_pool.cc
|
| @@ -652,10 +652,8 @@ void SequencedWorkerPool::OnDestruct() const {
|
| // thread or not, use that instead of restricting destruction to
|
| // only the constructor message loop.
|
| if (constructor_message_loop_->BelongsToCurrentThread()) {
|
| - LOG(INFO) << "Deleting on this thread";
|
| delete this;
|
| } else {
|
| - LOG(INFO) << "Deleting soon";
|
| constructor_message_loop_->DeleteSoon(FROM_HERE, this);
|
| }
|
| }
|
|
|