| Index: third_party/WebKit/Source/core/html/DocumentNameCollection.h
|
| diff --git a/third_party/WebKit/Source/core/html/DocumentNameCollection.h b/third_party/WebKit/Source/core/html/DocumentNameCollection.h
|
| index b7892c8a26b329ac2245217334df9c1329e8a027..c42269015402afae5461d4888202c96a7659dc2f 100644
|
| --- a/third_party/WebKit/Source/core/html/DocumentNameCollection.h
|
| +++ b/third_party/WebKit/Source/core/html/DocumentNameCollection.h
|
| @@ -14,7 +14,7 @@ class DocumentNameCollection final : public HTMLNameCollection {
|
| public:
|
| static DocumentNameCollection* create(ContainerNode& document, CollectionType type, const AtomicString& name)
|
| {
|
| - ASSERT_UNUSED(type, type == DocumentNamedItems);
|
| + DCHECK_EQ(type, DocumentNamedItems);
|
| return new DocumentNameCollection(document, name);
|
| }
|
|
|
|
|