#ifndef COMPONENTS_JS_INJECTION_BROWSER_JS_COMMUNICATION_HOST_H_
#define COMPONENTS_JS_INJECTION_BROWSER_JS_COMMUNICATION_HOST_H_
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "components/js_injection/common/interfaces.mojom.h"
#include "content/public/browser/global_routing_id.h"
#include "content/public/browser/web_contents_observer.h"
namespace content {
class RenderFrameHost;
}
namespace js_injection {
class OriginMatcher;
struct JsObject;
class WebMessageHostFactory;
struct DocumentStartJavaScript { … };
class JsCommunicationHost : public content::WebContentsObserver { … };
}
#endif