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

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp

Issue 2810513002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in modules/filesystem (Closed)
Patch Set: split 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/filesystem/FileSystemCallbacks.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp b/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp
index 9772e4bb37e48bef3e51b4502b872709ad2da452..1760084b0a7d4968ac6dfd7a15664fa548a85f85 100644
--- a/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp
@@ -216,7 +216,7 @@ EntriesCallbacks::EntriesCallbacks(EntriesCallback* success_callback,
success_callback_(success_callback),
directory_reader_(directory_reader),
base_path_(base_path) {
- ASSERT(directory_reader_);
+ DCHECK(directory_reader_);
}
void EntriesCallbacks::DidReadDirectoryEntry(const String& name,

Powered by Google App Engine
This is Rietveld 408576698