// 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 CONTENT_PUBLIC_RENDERER_WORKER_THREAD_H_ #define CONTENT_PUBLIC_RENDERER_WORKER_THREAD_H_ #include "base/functional/callback.h" #include "content/common/content_export.h" namespace content { // Utility functions for worker threads, for example service worker threads. // // This allows getting the thread IDs for service worker threads, then later // posting tasks back to them. class CONTENT_EXPORT WorkerThread { … }; } // namespace content #endif // CONTENT_PUBLIC_RENDERER_WORKER_THREAD_H_