| Index: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp
|
| index db9c163142d125417729d1989f9a32f057957a18..794ad460b1ca0ce5864a18718ef24623ebe1bc08 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp
|
| @@ -341,9 +341,9 @@ void SQLiteFileSystem::RegisterSQLiteVFS() {
|
|
|
| // These are implemented by delegating to |wrappedVfs|.
|
| // TODO(shess): Implement local versions.
|
| - ASSERT(wrapped_vfs->xRandomness);
|
| - ASSERT(wrapped_vfs->xSleep);
|
| - ASSERT(wrapped_vfs->xCurrentTime);
|
| + DCHECK(wrapped_vfs->xRandomness);
|
| + DCHECK(wrapped_vfs->xSleep);
|
| + DCHECK(wrapped_vfs->xCurrentTime);
|
|
|
| static sqlite3_vfs chromium_vfs = {1,
|
| sizeof(chromiumVfsFile),
|
|
|