blob: ed0a08db7d7ed1d23511714da7acdd8f57be3b1b [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_RENDERER_WORKER_THREAD_UTIL_H_
#define EXTENSIONS_RENDERER_WORKER_THREAD_UTIL_H_
namespace extensions {
namespace worker_thread_util {
// Returns true if the current thread is a worker thread.
bool IsWorkerThread();
// Returns true if the current Service Worker global scope has an active
// interaction.
//
// Valid only on worker thread.
bool HasWorkerContextProxyInteraction();
} // namespace worker_thread_util
} // namespace extensions
#endif // EXTENSIONS_RENDERER_WORKER_THREAD_UTIL_H_