chromium/base/task/sequence_manager/associated_thread_id.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/task/sequence_manager/associated_thread_id.h"

#include "base/check.h"
#include "base/dcheck_is_on.h"

namespace base {
namespace sequence_manager {
namespace internal {

AssociatedThreadId::AssociatedThreadId() = default;
AssociatedThreadId::~AssociatedThreadId() = default;

void AssociatedThreadId::BindToCurrentThread() {}

bool AssociatedThreadId::IsBoundToCurrentThread() const {}

void AssociatedThreadId::AssertInSequenceWithCurrentThread() const {}

void AssociatedThreadId::StartInSequenceWithCurrentThread() {}

void AssociatedThreadId::StopInSequenceWithCurrentThread() {}

}  // namespace internal
}  // namespace sequence_manager
}  // namespace base