blob: 83cdb901dbc28aec0538cf25cfbaa9b2a793a33b [file] [log] [blame]
// Copyright 2018 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 BASE_TASK_SEQUENCE_MANAGER_TASK_QUEUE_TASK_RUNNER_H_
#define BASE_TASK_SEQUENCE_MANAGER_TASK_QUEUE_TASK_RUNNER_H_
#include "base/single_thread_task_runner.h"
namespace base {
namespace sequence_manager {
class TaskQueue;
namespace internal {
// TODO(kraynov): Post tasks to a TaskQueue solely using this task runner and
// drop SingleThreadTaskRunner implementation in the TaskQueue class.
// See https://crbug.com/865411.
class BASE_EXPORT TaskQueueTaskRunner : public SingleThreadTaskRunner {
public:
// TODO(kraynov): Use TaskQueueTaskProxy that will be detachable
// from TaskQueue(Impl) when it's getting shutdown.
TaskQueueTaskRunner(scoped_refptr<TaskQueue> task_queue, int task_type);
bool PostDelayedTask(const Location& location,
OnceClosure callback,
TimeDelta delay) override;
bool PostNonNestableDelayedTask(const Location& location,
OnceClosure callback,
TimeDelta delay) override;
bool RunsTasksInCurrentSequence() const override;
private:
~TaskQueueTaskRunner() override; // Ref-counted.
scoped_refptr<TaskQueue> task_queue_;
const int task_type_;
DISALLOW_COPY_AND_ASSIGN(TaskQueueTaskRunner);
};
} // namespace internal
} // namespace sequence_manager
} // namespace base
#endif // BASE_TASK_SEQUENCE_MANAGER_TASK_QUEUE_TASK_RUNNER_H_