#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_PRELOAD_KEY_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_PRELOAD_KEY_H_
#include "third_party/blink/renderer/platform/loader/fetch/resource.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
#include "third_party/blink/renderer/platform/weborigin/kurl_hash.h"
#include "third_party/blink/renderer/platform/wtf/hash_traits.h"
namespace blink {
struct PreloadKey final { … };
}
namespace WTF {
template <>
struct HashTraits<blink::PreloadKey>
: TwoFieldsHashTraits<blink::PreloadKey,
&blink::PreloadKey::url,
&blink::PreloadKey::type> { … };
}
#endif