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

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

Issue 2031113002: IndexedDB Observers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Expected result changed Created 4 years, 6 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/WebIDBTypes.h
diff --git a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h
index 06837b0d66b4ec91e9485117b51bd7c98e561ab3..bb6df2e3876488e2b9bbbee584d1c2d45bdf3e55 100644
--- a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h
+++ b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h
@@ -71,6 +71,12 @@ enum WebIDBPutMode {
WebIDBPutModeLast = WebIDBPutModeCursorUpdate
};
+enum WebIDBOperationType {
+ WebIDBAdd = 0,
+ WebIDBPut,
+ WebIDBDelete,
+ WebIDBClear
+};
Marijn Kruisselbrink 2016/06/15 13:02:45 nit: blank line between this enum and the next
palakj1 2016/06/15 19:16:31 Done
enum WebIDBTransactionMode {
WebIDBTransactionModeReadOnly = 0,
WebIDBTransactionModeReadWrite,

Powered by Google App Engine
This is Rietveld 408576698