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

Side by Side Diff: base/test/thread_test_helper.cc

Issue 2791243002: Rewrite base::Bind into base::BindOnce on trivial cases in base (Closed)
Patch Set: rebase Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « base/test/scoped_task_scheduler_unittest.cc ('k') | base/threading/post_task_and_reply_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/test/thread_test_helper.h" 5 #include "base/test/thread_test_helper.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/threading/thread_restrictions.h" 11 #include "base/threading/thread_restrictions.h"
12 12
13 namespace base { 13 namespace base {
14 14
15 ThreadTestHelper::ThreadTestHelper( 15 ThreadTestHelper::ThreadTestHelper(
16 scoped_refptr<SingleThreadTaskRunner> target_thread) 16 scoped_refptr<SingleThreadTaskRunner> target_thread)
17 : test_result_(false), 17 : test_result_(false),
18 target_thread_(std::move(target_thread)), 18 target_thread_(std::move(target_thread)),
19 done_event_(WaitableEvent::ResetPolicy::AUTOMATIC, 19 done_event_(WaitableEvent::ResetPolicy::AUTOMATIC,
20 WaitableEvent::InitialState::NOT_SIGNALED) {} 20 WaitableEvent::InitialState::NOT_SIGNALED) {}
21 21
22 bool ThreadTestHelper::Run() { 22 bool ThreadTestHelper::Run() {
23 if (!target_thread_->PostTask( 23 if (!target_thread_->PostTask(
24 FROM_HERE, base::Bind(&ThreadTestHelper::RunInThread, this))) { 24 FROM_HERE, base::BindOnce(&ThreadTestHelper::RunInThread, this))) {
25 return false; 25 return false;
26 } 26 }
27 base::ThreadRestrictions::ScopedAllowWait allow_wait; 27 base::ThreadRestrictions::ScopedAllowWait allow_wait;
28 done_event_.Wait(); 28 done_event_.Wait();
29 return test_result_; 29 return test_result_;
30 } 30 }
31 31
32 void ThreadTestHelper::RunTest() { set_test_result(true); } 32 void ThreadTestHelper::RunTest() { set_test_result(true); }
33 33
34 ThreadTestHelper::~ThreadTestHelper() {} 34 ThreadTestHelper::~ThreadTestHelper() {}
35 35
36 void ThreadTestHelper::RunInThread() { 36 void ThreadTestHelper::RunInThread() {
37 RunTest(); 37 RunTest();
38 done_event_.Signal(); 38 done_event_.Signal();
39 } 39 }
40 40
41 } // namespace base 41 } // namespace base
OLDNEW
« no previous file with comments | « base/test/scoped_task_scheduler_unittest.cc ('k') | base/threading/post_task_and_reply_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698