| Index: third_party/WebKit/Source/core/dom/CharacterData.h
|
| diff --git a/third_party/WebKit/Source/core/dom/CharacterData.h b/third_party/WebKit/Source/core/dom/CharacterData.h
|
| index 15b96f11f7c014c1e78e8a294f2d10a05733f9b7..5c9c9466712412e8f374766f13cdcf40da8c8f6a 100644
|
| --- a/third_party/WebKit/Source/core/dom/CharacterData.h
|
| +++ b/third_party/WebKit/Source/core/dom/CharacterData.h
|
| @@ -57,12 +57,12 @@ protected:
|
| : Node(&treeScope, type)
|
| , m_data(!text.isNull() ? text : emptyString())
|
| {
|
| - ASSERT(type == CreateOther || type == CreateText || type == CreateEditingText);
|
| + DCHECK(type == CreateOther || type == CreateText || type == CreateEditingText);
|
| }
|
|
|
| void setDataWithoutUpdate(const String& data)
|
| {
|
| - ASSERT(!data.isNull());
|
| + DCHECK(!data.isNull());
|
| m_data = data;
|
| }
|
| enum UpdateSource {
|
|
|