blob: 97b559da18a5b2bfebd21b45aeb6af13a0a2383b [file] [log] [blame]
// Copyright 2019 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 "third_party/blink/renderer/platform/testing/io_task_runner_testing_platform_support.h"
#include "base/single_thread_task_runner.h"
namespace blink {
IOTaskRunnerTestingPlatformSupport::IOTaskRunnerTestingPlatformSupport()
: io_thread_(
Thread::CreateThread(ThreadCreationParams(ThreadType::kTestThread))) {
}
scoped_refptr<base::SingleThreadTaskRunner>
IOTaskRunnerTestingPlatformSupport::GetIOTaskRunner() const {
return io_thread_->GetTaskRunner();
}
} // namespace blink