blob: 21a288f6799975c187bcb80e402f49971edbb865 [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.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_IO_TASK_RUNNER_TESTING_PLATFORM_SUPPORT_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_IO_TASK_RUNNER_TESTING_PLATFORM_SUPPORT_H_
#include "third_party/blink/renderer/platform/testing/testing_platform_support.h"
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/platform/scheduler/public/thread.h"
namespace base {
class SingleThreadTaskRunner;
}
namespace blink {
class IOTaskRunnerTestingPlatformSupport : public TestingPlatformSupport {
public:
IOTaskRunnerTestingPlatformSupport();
scoped_refptr<base::SingleThreadTaskRunner> GetIOTaskRunner() const override;
private:
std::unique_ptr<Thread> io_thread_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_IO_TASK_RUNNER_TESTING_PLATFORM_SUPPORT_H_