| Index: third_party/WebKit/Source/core/html/RadioNodeList.h
|
| diff --git a/third_party/WebKit/Source/core/html/RadioNodeList.h b/third_party/WebKit/Source/core/html/RadioNodeList.h
|
| index 766e0edd6ebbbc2c51f48f70e39e987ad4bf59ac..c218f35ab10fecccee303180281e906df84c4a80 100644
|
| --- a/third_party/WebKit/Source/core/html/RadioNodeList.h
|
| +++ b/third_party/WebKit/Source/core/html/RadioNodeList.h
|
| @@ -37,7 +37,7 @@ class RadioNodeList final : public LiveNodeList {
|
| public:
|
| static RadioNodeList* create(ContainerNode& ownerNode, CollectionType type, const AtomicString& name)
|
| {
|
| - ASSERT_UNUSED(type, type == RadioNodeListType || type == RadioImgNodeListType);
|
| + DCHECK(type == RadioNodeListType || type == RadioImgNodeListType);
|
| return new RadioNodeList(ownerNode, name, type);
|
| }
|
|
|
|
|