| Index: third_party/WebKit/Source/wtf/text/StringConcatenate.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/StringConcatenate.h b/third_party/WebKit/Source/wtf/text/StringConcatenate.h
|
| index 7be335600dddd622d006ca1f4ae5c3384b7fc534..326921b65d5d4cf458ec95748b45adc8322ee408 100644
|
| --- a/third_party/WebKit/Source/wtf/text/StringConcatenate.h
|
| +++ b/third_party/WebKit/Source/wtf/text/StringConcatenate.h
|
| @@ -91,7 +91,7 @@ class StringTypeAdapter<UChar> {
|
| bool is8Bit() const { return m_buffer <= 0xff; }
|
|
|
| void writeTo(LChar* destination) const {
|
| - ASSERT(is8Bit());
|
| + DCHECK(is8Bit());
|
| *destination = static_cast<LChar>(m_buffer);
|
| }
|
|
|
|
|