#ifndef CONTENT_RENDERER_FRAME_OWNER_PROPERTIES_CONVERTER_H_
#define CONTENT_RENDERER_FRAME_OWNER_PROPERTIES_CONVERTER_H_
#include "third_party/blink/public/mojom/frame/frame_owner_properties.mojom.h"
#include "third_party/blink/public/web/web_frame_owner_properties.h"
namespace mojo {
template <>
struct TypeConverter<blink::WebFrameOwnerProperties,
blink::mojom::FrameOwnerProperties> {
static blink::WebFrameOwnerProperties Convert(
const blink::mojom::FrameOwnerProperties& mojo_properties);
};
template <>
struct TypeConverter<blink::mojom::FrameOwnerPropertiesPtr,
blink::WebFrameOwnerProperties> {
static blink::mojom::FrameOwnerPropertiesPtr Convert(
const blink::WebFrameOwnerProperties& properties);
};
}
#endif