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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBRequest.h

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/IDBRequest.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
index 1943ab2801b1080b0b9488d066406ab3d33de61d..80ad1354c464a66da3832f8f29f7b74a9a6361e0 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
@@ -110,13 +110,13 @@ class MODULES_EXPORT IDBRequest : public EventTargetWithInlineData,
virtual void OnSuccess(IDBKey*, IDBKey* primary_key, PassRefPtr<IDBValue>);
// Only IDBOpenDBRequest instances should receive these:
- virtual void OnBlocked(int64_t old_version) { ASSERT_NOT_REACHED(); }
+ virtual void OnBlocked(int64_t old_version) { NOTREACHED(); }
virtual void OnUpgradeNeeded(int64_t old_version,
std::unique_ptr<WebIDBDatabase>,
const IDBDatabaseMetadata&,
WebIDBDataLoss,
String data_loss_message) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
virtual void OnSuccess(std::unique_ptr<WebIDBDatabase>,
const IDBDatabaseMetadata&) {

Powered by Google App Engine
This is Rietveld 408576698