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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemWin.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/SQLiteFileSystemWin.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemWin.cpp b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemWin.cpp
index 70878054f155f2367e7fb00614367dbe6eac30fb..2abe9eb176a7e675d725eec79601276844303b91 100644
--- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemWin.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteFileSystemWin.cpp
@@ -168,9 +168,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,
wrapped_vfs->szOsFile,

Powered by Google App Engine
This is Rietveld 408576698