Index: third_party/WebKit/Source/core/xml/XPathResult.cpp |
diff --git a/third_party/WebKit/Source/core/xml/XPathResult.cpp b/third_party/WebKit/Source/core/xml/XPathResult.cpp |
index 40f87346b8fda7b1603ece6ab973d74e3871a965..96a9f08962bf242037231105e689bff087889984 100644 |
--- a/third_party/WebKit/Source/core/xml/XPathResult.cpp |
+++ b/third_party/WebKit/Source/core/xml/XPathResult.cpp |
@@ -59,7 +59,7 @@ XPathResult::XPathResult(EvaluationContext& context, const Value& value) |
m_domTreeVersion = m_document->domTreeVersion(); |
return; |
} |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
} |
DEFINE_TRACE(XPathResult) |
@@ -166,7 +166,7 @@ bool XPathResult::invalidIteratorState() const |
if (resultType() != kUnorderedNodeIteratorType && resultType() != kOrderedNodeIteratorType) |
return false; |
- ASSERT(m_document); |
+ DCHECK(m_document); |
return m_document->domTreeVersion() != m_domTreeVersion; |
} |