| Index: third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| index 1e25a86d102c3b391166e8ba1009292dfdcc3b07..1d13b20c36714462cde207d90a1e2b1af274bf8f 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| @@ -39,7 +39,7 @@ unsigned SQLResultSetRowList::length() const {
|
| if (result_.size() == 0)
|
| return 0;
|
|
|
| - ASSERT(result_.size() % columns_.size() == 0);
|
| + DCHECK_EQ(result_.size() % columns_.size(), 0);
|
|
|
| return result_.size() / columns_.size();
|
| }
|
|
|