#ifndef CONTENT_BROWSER_SERVICE_WORKER_FAKE_EMBEDDED_WORKER_INSTANCE_CLIENT_H_
#define CONTENT_BROWSER_SERVICE_WORKER_FAKE_EMBEDDED_WORKER_INSTANCE_CLIENT_H_
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "third_party/blink/public/mojom/service_worker/embedded_worker.mojom.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_installed_scripts_manager.mojom.h"
namespace content {
class EmbeddedWorkerTestHelper;
class FakeServiceWorkerInstalledScriptsManager;
class FakeEmbeddedWorkerInstanceClient
: public blink::mojom::EmbeddedWorkerInstanceClient { … };
class DelayedFakeEmbeddedWorkerInstanceClient
: public FakeEmbeddedWorkerInstanceClient { … };
}
#endif