blob: 6fb3c9143885557a5a6cb90032d7b73074d92135 [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SYNC_BASE_BIND_TO_TASK_RUNNER_H_
#define COMPONENTS_SYNC_BASE_BIND_TO_TASK_RUNNER_H_
#include <utility>
#include "base/callback.h"
#include "base/location.h"
#include "base/task/bind_post_task.h"
#include "base/threading/sequenced_task_runner_handle.h"
// Helpers for using base::BindPostTask() with the TaskRunner for the current
// sequence, ie. base::SequencedTaskRunnerHandle::Get().
namespace syncer {
template <typename T>
base::OnceCallback<T> BindToCurrentSequence(
base::OnceCallback<T> callback,
const base::Location& location = FROM_HERE) {
return base::BindPostTask(base::SequencedTaskRunnerHandle::Get(),
std::move(callback), location);
}
template <typename T>
base::RepeatingCallback<T> BindToCurrentSequence(
base::RepeatingCallback<T> callback,
const base::Location& location = FROM_HERE) {
return base::BindPostTask(base::SequencedTaskRunnerHandle::Get(),
std::move(callback), location);
}
} // namespace syncer
#endif // COMPONENTS_SYNC_BASE_BIND_TO_TASK_RUNNER_H_