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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp

Issue 2801893008: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in modules/indexeddb (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/indexeddb/IndexedDBClient.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp b/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp
index 65cb6aeae044d67b28bd0793c592317d4b22a80b..f11ecf0a20e614fa71f7e065d98200cc38c2c0ef 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp
@@ -24,7 +24,7 @@ IndexedDBClient* IndexedDBClient::From(ExecutionContext* context) {
ToDocument(*context).GetFrame(), SupplementName()));
WorkerClients* clients = ToWorkerGlobalScope(*context).Clients();
- ASSERT(clients);
+ DCHECK(clients);
return static_cast<IndexedDBClient*>(
Supplement<WorkerClients>::From(clients, SupplementName()));
}

Powered by Google App Engine
This is Rietveld 408576698