Index: third_party/WebKit/Source/core/dom/TagCollection.h |
diff --git a/third_party/WebKit/Source/core/dom/TagCollection.h b/third_party/WebKit/Source/core/dom/TagCollection.h |
index 798a797c4d120e36cbc4a6c0300831735d8ef28b..640a26fa69be8d0b2b46654ecf58ea1e41e5e763 100644 |
--- a/third_party/WebKit/Source/core/dom/TagCollection.h |
+++ b/third_party/WebKit/Source/core/dom/TagCollection.h |
@@ -43,7 +43,7 @@ class TagCollection : public HTMLCollection { |
static TagCollection* create(ContainerNode& rootNode, |
CollectionType type, |
const AtomicString& localName) { |
- ASSERT_UNUSED(type, type == TagCollectionType); |
+ DCHECK_EQ(type, TagCollectionType); |
return new TagCollection(rootNode, TagCollectionType, starAtom, localName); |
} |