Index: third_party/WebKit/Source/core/xml/XPathStep.h |
diff --git a/third_party/WebKit/Source/core/xml/XPathStep.h b/third_party/WebKit/Source/core/xml/XPathStep.h |
index cb17248cdc393869767c21890535178f425612ec..e37c7c4c238b5e65af5c8f429bc69380deed0803 100644 |
--- a/third_party/WebKit/Source/core/xml/XPathStep.h |
+++ b/third_party/WebKit/Source/core/xml/XPathStep.h |
@@ -64,14 +64,14 @@ public: |
, m_data(o.m_data) |
, m_namespaceURI(o.m_namespaceURI) |
{ |
- ASSERT(o.m_mergedPredicates.isEmpty()); |
+ DCHECK(o.m_mergedPredicates.isEmpty()); |
} |
NodeTest& operator=(const NodeTest& o) |
{ |
m_kind = o.m_kind; |
m_data = o.m_data; |
m_namespaceURI = o.m_namespaceURI; |
- ASSERT(o.m_mergedPredicates.isEmpty()); |
+ DCHECK(o.m_mergedPredicates.isEmpty()); |
return *this; |
} |
DEFINE_INLINE_TRACE() { visitor->trace(m_mergedPredicates); } |