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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.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/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),

Powered by Google App Engine
This is Rietveld 408576698