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

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

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some (incomplete) work on struct traits. Created 4 years, 5 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 cf616c458e64398fc15aa423a50a26cf91b5987a..e95aea9cd4076d292db5942aef8e6e819896e9b8 100644
--- a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h
+++ b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h
@@ -26,6 +26,8 @@
#ifndef WebIDBTypes_h
#define WebIDBTypes_h
+// TODO(cmumford): Should move to internal implementation.
+#if 1
namespace blink {
enum WebIDBKeyType {
@@ -50,6 +52,7 @@ enum WebIDBDataLoss {
WebIDBDataLossTotal,
};
+#if 1
enum WebIDBCursorDirection {
WebIDBCursorDirectionNext = 0,
WebIDBCursorDirectionNextNoDuplicate = 1,
@@ -70,6 +73,7 @@ enum WebIDBPutMode {
WebIDBPutModeCursorUpdate,
WebIDBPutModeLast = WebIDBPutModeCursorUpdate
};
+#endif
enum WebIDBOperationType {
WebIDBAdd = 0,
@@ -86,5 +90,6 @@ enum WebIDBTransactionMode {
};
} // namespace blink
+#endif
#endif // WebIDBTypes_h

Powered by Google App Engine
This is Rietveld 408576698