// Copyright 2013 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/test_io_thread.h" #include "base/check.h" #include "base/message_loop/message_pump_type.h" namespace base { TestIOThread::TestIOThread(Mode mode) : … { … } TestIOThread::~TestIOThread() { … } void TestIOThread::Start() { … } void TestIOThread::Stop() { … } void TestIOThread::PostTask(const Location& from_here, base::OnceClosure task) { … } } // namespace base