summaryrefslogtreecommitdiffstats
path: root/base/threading
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-07 03:32:13 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-07 03:32:13 +0000
commit4eb74ce100e75920f61a9e88684acfbb8e433770 (patch)
treed4cf184d567a68a1e27804f254cf54700429a2cd /base/threading
parent566f223796e1bb9c72fcb0418778259a04f6d4d4 (diff)
downloadchromium_src-4eb74ce100e75920f61a9e88684acfbb8e433770.zip
chromium_src-4eb74ce100e75920f61a9e88684acfbb8e433770.tar.gz
chromium_src-4eb74ce100e75920f61a9e88684acfbb8e433770.tar.bz2
Remove logging statements inadvertently committed in r125152
BUG=115987 TEST= TBR=brettw@chromium.org Review URL: http://codereview.chromium.org/9600068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125316 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/threading')
-rw-r--r--base/threading/sequenced_worker_pool.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/base/threading/sequenced_worker_pool.cc b/base/threading/sequenced_worker_pool.cc
index b206ae0..8cabfa9 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);
}
}