Index: third_party/WebKit/Source/core/dom/NameNodeList.h |
diff --git a/third_party/WebKit/Source/core/dom/NameNodeList.h b/third_party/WebKit/Source/core/dom/NameNodeList.h |
index c25ca2389a8170e27c78d40b3b2fe6b951545dcb..7dc61c44733a9dacac7ee00c3d157b6033d0eb65 100644 |
--- a/third_party/WebKit/Source/core/dom/NameNodeList.h |
+++ b/third_party/WebKit/Source/core/dom/NameNodeList.h |
@@ -35,7 +35,7 @@ class NameNodeList final : public LiveNodeList { |
static NameNodeList* create(ContainerNode& rootNode, |
CollectionType type, |
const AtomicString& name) { |
- ASSERT_UNUSED(type, type == NameNodeListType); |
+ DCHECK_EQ(type, NameNodeListType); |
return new NameNodeList(rootNode, name); |
} |