chromium/third_party/blink/renderer/core/probe/async_task_context.cc

// 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.

#include "third_party/blink/renderer/core/probe/async_task_context.h"

#include "base/trace_event/trace_id_helper.h"
#include "base/trace_event/typed_macros.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/frame/ad_tracker.h"
#include "third_party/blink/renderer/platform/bindings/thread_debugger.h"

namespace blink {
namespace probe {

AsyncTaskContext::~AsyncTaskContext() {}

void AsyncTaskContext::Schedule(ExecutionContext* context,
                                const StringView& name) {}

void AsyncTaskContext::Cancel() {}

void* AsyncTaskContext::Id() const {}

}  // namespace probe
}  // namespace blink