chromium/third_party/blink/renderer/platform/wtf/sequence_bound.h

// Copyright 2021 The Chromium Authors
// 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_WTF_SEQUENCE_BOUND_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_WTF_SEQUENCE_BOUND_H_

#include "base/functional/bind.h"
#include "base/task/sequenced_task_runner.h"
#include "base/threading/sequence_bound.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_functional.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"

namespace WTF {
namespace internal {

template <typename T>
struct IsCrossThreadOnceFunctionImpl : std::false_type {};

IsCrossThreadOnceFunctionImpl<CrossThreadOnceFunction<R (Args...)>>;

IsCrossThreadOnceFunction;

struct SequenceBoundBindTraits {};

}  // namespace internal

SequenceBound;

}  // namespace WTF

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_WTF_SEQUENCE_BOUND_H_