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