#ifndef EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSIONS_GUEST_VIEW_H_
#define EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSIONS_GUEST_VIEW_H_
#include <stdint.h>
#include <string>
#include "components/guest_view/browser/guest_view_message_handler.h"
#include "content/public/browser/global_routing_id.h"
#include "extensions/common/mojom/guest_view.mojom.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
namespace extensions {
class ExtensionsGuestView : public guest_view::GuestViewMessageHandler,
public mojom::GuestView { … };
}
#endif