chromium/extensions/browser/guest_view/extensions_guest_view.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSIONS_GUEST_VIEW_H_