// Copyright 2011 The Chromium Authors // 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 <utility> #include "base/functional/bind.h" #include "base/location.h" #include "base/threading/thread_restrictions.h" namespace base { ThreadTestHelper::ThreadTestHelper( scoped_refptr<SequencedTaskRunner> target_sequence) : … { … } bool ThreadTestHelper::Run() { … } void ThreadTestHelper::RunTest() { … } ThreadTestHelper::~ThreadTestHelper() = default; void ThreadTestHelper::RunOnSequence() { … } } // namespace base