Index: third_party/WebKit/Source/core/dom/ClassCollection.h |
diff --git a/third_party/WebKit/Source/core/dom/ClassCollection.h b/third_party/WebKit/Source/core/dom/ClassCollection.h |
index ee6cd5d3e08e891cb3aacf4271632001236cd494..c19386ecdc58f2995ef7ce55bb257f3d8425a833 100644 |
--- a/third_party/WebKit/Source/core/dom/ClassCollection.h |
+++ b/third_party/WebKit/Source/core/dom/ClassCollection.h |
@@ -45,7 +45,7 @@ class ClassCollection final : public HTMLCollection { |
static ClassCollection* create(ContainerNode& rootNode, |
CollectionType type, |
const AtomicString& classNames) { |
- ASSERT_UNUSED(type, type == ClassCollectionType); |
+ DCHECK_EQ(type, ClassCollectionType); |
return new ClassCollection(rootNode, classNames); |
} |