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

Side by Side Diff: third_party/WebKit/public/platform/modules/indexeddb/WebIDBDatabaseCallbacks.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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 18 matching lines...) Expand all
29 #include "public/platform/WebCommon.h" 29 #include "public/platform/WebCommon.h"
30 #include "public/platform/WebString.h" 30 #include "public/platform/WebString.h"
31 #include "public/platform/modules/indexeddb/WebIDBDatabaseError.h" 31 #include "public/platform/modules/indexeddb/WebIDBDatabaseError.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 class WebIDBDatabaseCallbacks { 35 class WebIDBDatabaseCallbacks {
36 public: 36 public:
37 virtual ~WebIDBDatabaseCallbacks() { } 37 virtual ~WebIDBDatabaseCallbacks() { }
38 38
39 virtual void onForcedClose() { BLINK_ASSERT_NOT_REACHED(); } 39 virtual void onForcedClose() = 0;
40 virtual void onVersionChange(long long oldVersion, long long newVersion) { B LINK_ASSERT_NOT_REACHED(); } 40 virtual void onVersionChange(long long oldVersion, long long newVersion) = 0 ;
41 41
42 virtual void onAbort(long long transactionId, const WebIDBDatabaseError&) { BLINK_ASSERT_NOT_REACHED(); } 42 virtual void onAbort(long long transactionId, const WebIDBDatabaseError&) = 0;
43 virtual void onComplete(long long transactionId) { BLINK_ASSERT_NOT_REACHED( ); } 43 virtual void onComplete(long long transactionId) = 0;
44 }; 44 };
45 45
46 } // namespace blink 46 } // namespace blink
47 47
48 #endif // WebIDBDatabaseCallbacks_h 48 #endif // WebIDBDatabaseCallbacks_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698