chromium/components/guest_view/browser/guest_view_message_handler.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 COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MESSAGE_HANDLER_H_
#define COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MESSAGE_HANDLER_H_

#include <stddef.h>
#include <stdint.h>

#include <string>

#include "base/values.h"
#include "components/guest_view/common/guest_view.mojom.h"
#include "content/public/browser/global_routing_id.h"

namespace content {
class BrowserContext;
}

namespace guest_view {
class GuestViewManager;
class GuestViewManagerDelegate;

class GuestViewMessageHandler : public mojom::GuestViewHost {};

}  // namespace guest_view

#endif  // COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MESSAGE_HANDLER_H_