#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_WTF_TEXT_ATOMIC_STRING_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_WTF_TEXT_ATOMIC_STRING_H_
#include <cstring>
#include <iosfwd>
#include <type_traits>
#include "build/build_config.h"
#include "third_party/abseil-cpp/absl/base/attributes.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/hash_table_deleted_value_type.h"
#include "third_party/blink/renderer/platform/wtf/ref_counted.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string_encoding.h"
#include "third_party/blink/renderer/platform/wtf/text/integer_to_string_conversion.h"
#include "third_party/blink/renderer/platform/wtf/text/string_view.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/wtf_export.h"
#include "third_party/perfetto/include/perfetto/tracing/traced_value_forward.h"
#ifdef __OBJC__
#include "base/apple/bridging.h"
#endif
namespace WTF {
class WTF_EXPORT AtomicString { … };
inline bool operator==(const AtomicString& a, const AtomicString& b) { … }
inline bool operator==(const AtomicString& a, const String& b) { … }
inline bool operator==(const String& a, const AtomicString& b) { … }
inline bool operator==(const AtomicString& a, const char* b) { … }
inline bool operator==(const char* a, const AtomicString& b) { … }
inline bool operator!=(const AtomicString& a, const AtomicString& b) { … }
inline bool operator!=(const AtomicString& a, const String& b) { … }
inline bool operator!=(const String& a, const AtomicString& b) { … }
inline bool operator!=(const AtomicString& a, const char* b) { … }
inline bool operator!=(const char* a, const AtomicString& b) { … }
WTF_EXPORT extern const AtomicString& g_null_atom;
WTF_EXPORT extern const AtomicString& g_empty_atom;
WTF_EXPORT extern const AtomicString& g_star_atom;
WTF_EXPORT extern const AtomicString& g_xml_atom;
WTF_EXPORT extern const AtomicString& g_xmlns_atom;
WTF_EXPORT extern const AtomicString& g_xlink_atom;
WTF_EXPORT extern const AtomicString& g_http_atom;
WTF_EXPORT extern const AtomicString& g_https_atom;
template <typename T>
struct HashTraits;
template <>
struct HashTraits<AtomicString>;
WTF_EXPORT std::ostream& operator<<(std::ostream&, const AtomicString&);
inline StringView::StringView(const AtomicString& string
ABSL_ATTRIBUTE_LIFETIME_BOUND,
unsigned offset,
unsigned length)
: … { … }
inline StringView::StringView(const AtomicString& string
ABSL_ATTRIBUTE_LIFETIME_BOUND,
unsigned offset)
: … { … }
inline StringView::StringView(
const AtomicString& string ABSL_ATTRIBUTE_LIFETIME_BOUND)
: … { … }
}
WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(…)
AtomicString;
g_null_atom;
g_empty_atom;
g_star_atom;
g_xml_atom;
g_xmlns_atom;
g_xlink_atom;
#include "third_party/blink/renderer/platform/wtf/text/string_concatenate.h"
#endif