#ifndef EXTENSIONS_BROWSER_EXTENSION_HOST_REGISTRY_H_
#define EXTENSIONS_BROWSER_EXTENSION_HOST_REGISTRY_H_
#include <unordered_set>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "components/keyed_service/core/keyed_service.h"
#include "extensions/common/extension_id.h"
class BrowserContextKeyedServiceFactory;
namespace content {
class BrowserContext;
class RenderFrameHost;
}
namespace extensions {
class ExtensionHost;
class ExtensionHostRegistry : public KeyedService { … };
}
#endif