| Index: third_party/WebKit/Source/wtf/text/AtomicString.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/AtomicString.h b/third_party/WebKit/Source/wtf/text/AtomicString.h
|
| index 8b537a7a776679a4d3e10ad9984119503a736e80..4099cd8e352735faf3c87f12c67f37bdee36c018 100644
|
| --- a/third_party/WebKit/Source/wtf/text/AtomicString.h
|
| +++ b/third_party/WebKit/Source/wtf/text/AtomicString.h
|
| @@ -50,6 +50,8 @@ class WTF_EXPORT AtomicString {
|
| AtomicString(const LChar* chars, unsigned length);
|
| AtomicString(const UChar* chars, unsigned length);
|
| AtomicString(const UChar* chars);
|
| + AtomicString(const char16_t* chars)
|
| + : AtomicString(reinterpret_cast<const UChar*>(chars)) {}
|
|
|
| template <size_t inlineCapacity>
|
| explicit AtomicString(const Vector<UChar, inlineCapacity>& vector)
|
|
|