chromium/content/browser/worker_host/test_shared_worker_service_impl.h

// 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 CONTENT_BROWSER_WORKER_HOST_TEST_SHARED_WORKER_SERVICE_IMPL_H_
#define CONTENT_BROWSER_WORKER_HOST_TEST_SHARED_WORKER_SERVICE_IMPL_H_

#include "base/functional/callback.h"
#include "base/memory/scoped_refptr.h"
#include "content/browser/worker_host/shared_worker_service_impl.h"
#include "mojo/public/cpp/bindings/remote_set.h"

namespace content {

class ServiceWorkerContextWrapper;
class StoragePartitionImpl;

// This class allows tests to shutdown workers and wait for their termination.
class TestSharedWorkerServiceImpl : public SharedWorkerServiceImpl {};

}  // namespace content

#endif  // CONTENT_BROWSER_WORKER_HOST_TEST_SHARED_WORKER_SERVICE_IMPL_H_