summaryrefslogtreecommitdiffstats
path: root/base/test
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-04 23:07:47 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-04 23:07:47 +0000
commita5a082fff5011536ba87306bc29202337499523c (patch)
tree844a8f01165fb16c24271e91e9b03552d280401d /base/test
parent8113f0e67d4826bf11d4f574623aae274c8cde34 (diff)
downloadchromium_src-a5a082fff5011536ba87306bc29202337499523c.zip
chromium_src-a5a082fff5011536ba87306bc29202337499523c.tar.gz
chromium_src-a5a082fff5011536ba87306bc29202337499523c.tar.bz2
Revert 180332 (speculative, BrowserAccessibilityTest.BasicAttributeTest
started failing on mac asan after this landed. I'll revert the revert if it doesn't help.) > base: Update the calls from QuitClosure() to QuitWhenIdleClosure(). > > The former is deprecated and thus should not be used anymore. The later is also > deprecated, but that will be fixed later on. > > BUG=131220 > R=darin@chromium.org > > > Review URL: https://chromiumcodereview.appspot.com/12188008 TBR=tfarina@chromium.org Review URL: https://codereview.chromium.org/12188024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180547 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/test')
-rw-r--r--base/test/sequenced_worker_pool_owner.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/test/sequenced_worker_pool_owner.cc b/base/test/sequenced_worker_pool_owner.cc
index afffe25..3d124fa 100644
--- a/base/test/sequenced_worker_pool_owner.cc
+++ b/base/test/sequenced_worker_pool_owner.cc
@@ -51,7 +51,7 @@ void SequencedWorkerPoolOwner::WillWaitForShutdown() {
void SequencedWorkerPoolOwner::OnDestruct() {
constructor_message_loop_->PostTask(
FROM_HERE,
- constructor_message_loop_->QuitWhenIdleClosure());
+ constructor_message_loop_->QuitClosure());
}
} // namespace base