Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1216)

Unified Diff: third_party/WebKit/Source/modules/webdatabase/SQLResultSet.cpp

Issue 2813433002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in modules/webdatabase (Closed)
Patch Set: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in modules/webdatabase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webdatabase/SQLResultSet.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLResultSet.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLResultSet.cpp
index cccf7ca94b583a91d901cc9502237476d22c9fa9..be0fbaa339487c1775501b8cd40e7ee6b717148b 100644
--- a/third_party/WebKit/Source/modules/webdatabase/SQLResultSet.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/SQLResultSet.cpp
@@ -68,7 +68,7 @@ SQLResultSetRowList* SQLResultSet::rows() const {
}
void SQLResultSet::SetInsertId(int64_t id) {
- ASSERT(!insert_id_set_);
+ DCHECK(!insert_id_set_);
insert_id_ = id;
insert_id_set_ = true;

Powered by Google App Engine
This is Rietveld 408576698