Chromium Code Reviews| 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..8b45a8f55b2d24aa76d4c97d2d3c8e72018d02ee 100644 |
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBKey.h |
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBKey.h |
| @@ -63,6 +63,7 @@ class MODULES_EXPORT IDBKey : public GarbageCollectedFinalized<IDBKey> { |
| DECLARE_TRACE(); |
| // In order of the least to the highest precedent in terms of sort order. |
| + // Also used for UMA. Append only. |
|
Mark P
2017/02/07 19:12:22
Please follow the comments and = guidelines here.
jsbell
2017/02/07 19:54:56
Done.
|
| enum Type { |
| InvalidType = 0, |
| ArrayType, |
| @@ -70,7 +71,7 @@ class MODULES_EXPORT IDBKey : public GarbageCollectedFinalized<IDBKey> { |
| StringType, |
| DateType, |
| NumberType, |
| - MinType |
| + TypeEnumMax = NumberType |
| }; |
| Type getType() const { return m_type; } |