#ifndef COMPONENTS_CONTENT_CAPTURE_RENDERER_CONTENT_CAPTURE_SENDER_H_
#define COMPONENTS_CONTENT_CAPTURE_RENDERER_CONTENT_CAPTURE_SENDER_H_
#include "components/content_capture/common/content_capture.mojom.h"
#include "content/public/renderer/render_frame_observer.h"
#include "mojo/public/cpp/bindings/associated_receiver.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
#include "third_party/blink/public/web/web_content_capture_client.h"
namespace blink {
class AssociatedInterfaceRegistry;
}
namespace content_capture {
struct ContentCaptureData;
class ContentCaptureSender : public content::RenderFrameObserver,
public blink::WebContentCaptureClient,
public mojom::ContentCaptureSender { … };
}
#endif