| Index: third_party/WebKit/Source/core/dom/NodeWithIndex.h
|
| diff --git a/third_party/WebKit/Source/core/dom/NodeWithIndex.h b/third_party/WebKit/Source/core/dom/NodeWithIndex.h
|
| index 4adb4c311f22527dff7305292356c9e1430d01a3..1a35965e6aaeb727f5aa78c242e4a91c7aa6349b 100644
|
| --- a/third_party/WebKit/Source/core/dom/NodeWithIndex.h
|
| +++ b/third_party/WebKit/Source/core/dom/NodeWithIndex.h
|
| @@ -48,8 +48,8 @@ public:
|
| {
|
| if (!hasIndex())
|
| m_index = node().nodeIndex();
|
| - ASSERT(hasIndex());
|
| - ASSERT(m_index == static_cast<int>(node().nodeIndex()));
|
| + DCHECK(hasIndex());
|
| + DCHECK_EQ(m_index, static_cast<int>(node().nodeIndex()));
|
| return m_index;
|
| }
|
|
|
|
|