| Index: third_party/WebKit/Source/core/html/HTMLTableRowsCollection.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTableRowsCollection.cpp b/third_party/WebKit/Source/core/html/HTMLTableRowsCollection.cpp
|
| index 5527c1245566381bc135888f5435bfd08760357a..1090b2c49d81b08533211acff673bd9d65018205 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTableRowsCollection.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTableRowsCollection.cpp
|
| @@ -127,12 +127,12 @@ HTMLTableRowElement* HTMLTableRowsCollection::lastRow(HTMLTableElement& table)
|
| HTMLTableRowsCollection::HTMLTableRowsCollection(ContainerNode& table)
|
| : HTMLCollection(table, TableRows, OverridesItemAfter)
|
| {
|
| - ASSERT(isHTMLTableElement(table));
|
| + DCHECK(isHTMLTableElement(table));
|
| }
|
|
|
| HTMLTableRowsCollection* HTMLTableRowsCollection::create(ContainerNode& table, CollectionType type)
|
| {
|
| - ASSERT_UNUSED(type, type == TableRows);
|
| + DCHECK_EQ(type, TableRows);
|
| return new HTMLTableRowsCollection(table);
|
| }
|
|
|
|
|