| Index: third_party/WebKit/Source/modules/indexeddb/IDBKey.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKey.h b/third_party/WebKit/Source/modules/indexeddb/IDBKey.h
|
| index 4b9ff354ec8b6fc7d97572886c98e97731d8848e..be542af81fd22e1437a63bace19f71e790ff3a2f 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBKey.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBKey.h
|
| @@ -63,14 +63,16 @@ class MODULES_EXPORT IDBKey : public GarbageCollectedFinalized<IDBKey> {
|
| DECLARE_TRACE();
|
|
|
| // In order of the least to the highest precedent in terms of sort order.
|
| + // These values are written to logs. New enum values can be added, but
|
| + // existing enums must never be renumbered or deleted and reused.
|
| enum Type {
|
| InvalidType = 0,
|
| - ArrayType,
|
| - BinaryType,
|
| - StringType,
|
| - DateType,
|
| - NumberType,
|
| - MinType
|
| + ArrayType = 1,
|
| + BinaryType = 2,
|
| + StringType = 3,
|
| + DateType = 4,
|
| + NumberType = 5,
|
| + TypeEnumMax,
|
| };
|
|
|
| Type getType() const { return m_type; }
|
|
|