| Index: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.cpp b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.cpp
|
| index 8dd5d0df672ca8da1c1bb8677c3b7b17391971d5..ae92d3edea0c2875fa8c5a0ce900dfbd0cb04e63 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.cpp
|
| @@ -101,7 +101,7 @@ void SQLiteDatabase::Close() {
|
| if (db_) {
|
| // FIXME: This is being called on the main thread during JS GC.
|
| // <rdar://problem/5739818>
|
| - // ASSERT(currentThread() == m_openingThread);
|
| + // DCHECK_EQ(currentThread(), m_openingThread);
|
| sqlite3* db = db_;
|
| {
|
| MutexLocker locker(database_closing_mutex_);
|
|
|