Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2440)

Unified Diff: base/threading/sequenced_worker_pool.cc

Issue 9600068: Remove logging statements inadvertently committed in r125152 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698