| // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #include "base/test/thread_test_helper.h" |
| #include "base/location.h" |
| #include "base/threading/thread_restrictions.h" |
| ThreadTestHelper::ThreadTestHelper(MessageLoopProxy* target_thread) |
| target_thread_(target_thread), |
| done_event_(false, false) { |
| bool ThreadTestHelper::Run() { |
| if (!target_thread_->PostTask( |
| FROM_HERE, base::Bind(&ThreadTestHelper::RunInThread, this))) { |
| base::ThreadRestrictions::ScopedAllowWait allow_wait; |
| void ThreadTestHelper::RunTest() { set_test_result(true); } |
| ThreadTestHelper::~ThreadTestHelper() {} |
| void ThreadTestHelper::RunInThread() { |