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

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

Issue 2810513002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in modules/filesystem (Closed)
Patch Set: rebase 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/LocalFileSystem.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp b/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp
index 65178c60b4b9ec034ce7035ab70857251a58b706..20ed96fb3a24a4a4f72c221147e36463175fe1f8 100644
--- a/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp
@@ -202,7 +202,7 @@ LocalFileSystem* LocalFileSystem::From(ExecutionContext& context) {
}
WorkerClients* clients = ToWorkerGlobalScope(context).Clients();
- ASSERT(clients);
+ DCHECK(clients);
LocalFileSystem* file_system = static_cast<LocalFileSystem*>(
Supplement<WorkerClients>::From(clients, SupplementName()));
DCHECK(file_system);

Powered by Google App Engine
This is Rietveld 408576698