| Index: third_party/WebKit/Source/wtf/text/StringOperators.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/StringOperators.h b/third_party/WebKit/Source/wtf/text/StringOperators.h
|
| index d39c45bb104b7449a3af11495ed7dd27ba649586..1ccb63eabef157e25259bd18d704af7c514dffab 100644
|
| --- a/third_party/WebKit/Source/wtf/text/StringOperators.h
|
| +++ b/third_party/WebKit/Source/wtf/text/StringOperators.h
|
| @@ -83,7 +83,7 @@ bool StringAppend<StringType1, StringType2>::is8Bit() const {
|
|
|
| template <typename StringType1, typename StringType2>
|
| void StringAppend<StringType1, StringType2>::writeTo(LChar* destination) const {
|
| - ASSERT(is8Bit());
|
| + DCHECK(is8Bit());
|
| StringTypeAdapter<StringType1> adapter1(m_string1);
|
| StringTypeAdapter<StringType2> adapter2(m_string2);
|
| adapter1.writeTo(destination);
|
|
|