Index: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h |
diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h |
index 5f9f2e9e4b14c78a0818fc514d3abdfdae6ca28b..20bce3e289c21b0325a0bcdea528d60f6e9bf271 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h |
+++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h |
@@ -95,7 +95,7 @@ class SQLiteDatabase { |
const char* LastErrorMsg(); |
sqlite3* Sqlite3Handle() const { |
- ASSERT(sharable_ || CurrentThread() == opening_thread_ || !db_); |
+ DCHECK_EQ(sharable_ || CurrentThread(), opening_thread_ || !db_); |
return db_; |
} |