#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_WTF_TEXT_ATOMIC_STRING_TABLE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_WTF_TEXT_ATOMIC_STRING_TABLE_H_
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/hash_set.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string_encoding.h"
#include "third_party/blink/renderer/platform/wtf/text/string_hash.h"
#include "third_party/blink/renderer/platform/wtf/text/string_impl.h"
#include "third_party/blink/renderer/platform/wtf/threading.h"
#include "third_party/blink/renderer/platform/wtf/wtf_export.h"
namespace WTF {
class WTF_EXPORT AtomicStringTable final { … };
inline bool operator==(const AtomicStringTable::WeakResult& lhs,
const AtomicStringTable::WeakResult& rhs) { … }
inline bool operator==(const AtomicStringTable::WeakResult& lhs,
const StringImpl* rhs) { … }
inline bool operator==(const StringImpl* lhs,
const AtomicStringTable::WeakResult& rhs) { … }
inline bool operator==(const AtomicStringTable::WeakResult& lhs,
const String& rhs) { … }
inline bool operator==(const String& lhs,
const AtomicStringTable::WeakResult& rhs) { … }
inline bool operator==(const AtomicStringTable::WeakResult& lhs,
const AtomicString& rhs) { … }
inline bool operator==(const AtomicString& lhs,
const AtomicStringTable::WeakResult& rhs) { … }
}
AtomicStringTable;
#endif