#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_NETWORK_BLINK_SCHEMEFUL_SITE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_NETWORK_BLINK_SCHEMEFUL_SITE_H_
#include "base/check.h"
#include "base/gtest_prod_util.h"
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace network {
namespace mojom {
class SchemefulSiteDataView;
}
}
namespace url {
class Origin;
}
namespace blink {
class PLATFORM_EXPORT BlinkSchemefulSite { … };
}
namespace WTF {
template <>
struct HashTraits<blink::BlinkSchemefulSite>
: OneFieldHashTraits<blink::BlinkSchemefulSite,
&blink::BlinkSchemefulSite::site_as_origin_> { … };
}
#endif