#ifndef CONTENT_PUBLIC_COMMON_REFERRER_TYPE_CONVERTERS_H_
#define CONTENT_PUBLIC_COMMON_REFERRER_TYPE_CONVERTERS_H_
#include "content/common/content_export.h"
#include "content/public/common/referrer.h"
#include "mojo/public/cpp/bindings/type_converter.h"
#include "third_party/blink/public/mojom/loader/referrer.mojom.h"
namespace mojo {
template <>
struct CONTENT_EXPORT
TypeConverter<blink::mojom::ReferrerPtr, content::Referrer> { … };
template <>
struct CONTENT_EXPORT
TypeConverter<content::Referrer, blink::mojom::ReferrerPtr> { … };
}
#endif