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

Unified Diff: third_party/WebKit/public/platform/modules/indexeddb/WebIDBCursor.h

Issue 1851293002: Remove BLINK_ASSERT() and BLINK_ASSERT_NOT_REACHED() macros. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check the |callbacks| for nullptr and use explicit delete. Created 4 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/public/platform/modules/indexeddb/WebIDBCursor.h
diff --git a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBCursor.h b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBCursor.h
index e9bcfc399d0e6e1c5ae2b2739c5f8e8deb259f61..c621ba9719a07b8c302e9b2b4b54ff454dfe81a8 100644
--- a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBCursor.h
+++ b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBCursor.h
@@ -38,8 +38,8 @@ class WebIDBCursor {
public:
virtual ~WebIDBCursor() { }
- virtual void advance(unsigned long, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
- virtual void continueFunction(const WebIDBKey&, const WebIDBKey& primaryKey, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
+ virtual void advance(unsigned long, WebIDBCallbacks*) = 0;
+ virtual void continueFunction(const WebIDBKey&, const WebIDBKey& primaryKey, WebIDBCallbacks*) = 0;
virtual void postSuccessHandlerCallback() { } // Only used in frontend.
protected:

Powered by Google App Engine
This is Rietveld 408576698