chromium/content/renderer/worker/worker_thread_registry.h

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

#ifndef CONTENT_RENDERER_WORKER_WORKER_THREAD_REGISTRY_H_
#define CONTENT_RENDERER_WORKER_WORKER_THREAD_REGISTRY_H_

#include <map>

#include "base/functional/callback.h"
#include "base/memory/ref_counted.h"
#include "base/synchronization/lock.h"
#include "base/threading/platform_thread.h"
#include "content/common/content_export.h"
#include "content/public/renderer/worker_thread.h"

namespace base {
class SequencedTaskRunner;
}

namespace content {

class CONTENT_EXPORT WorkerThreadRegistry {};

}  // namespace content

#endif  // CONTENT_RENDERER_WORKER_WORKER_THREAD_REGISTRY_H_