| Index: tools/metrics/histograms/histograms.xml
|
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
|
| index a6321486a4ebbbd3ed2b6863c89eb3cc756a16c9..6019c6210af17c717159437b7d9372639e668392 100644
|
| --- a/tools/metrics/histograms/histograms.xml
|
| +++ b/tools/metrics/histograms/histograms.xml
|
| @@ -74574,6 +74574,26 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
|
| </summary>
|
| </histogram>
|
|
|
| +<histogram name="WebCore.IndexedDB.ObjectStore.IndexEntry.KeyType"
|
| + enum="IDBKeyType">
|
| + <owner>jsbell@chromium.org</owner>
|
| + <summary>
|
| + The type of key (number, string, etc.) used for an index entry for a record
|
| + being newly stored or updated in an Indexed DB object store. For array keys,
|
| + the types of sub-keys are not recorded.
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram name="WebCore.IndexedDB.ObjectStore.Record.KeyType"
|
| + enum="IDBKeyType">
|
| + <owner>jsbell@chromium.org</owner>
|
| + <summary>
|
| + The type of key (number, string, etc.) used for a record being newly stored
|
| + or updated in an Indexed DB object store. For array keys, the types of
|
| + sub-keys are not recorded.
|
| + </summary>
|
| +</histogram>
|
| +
|
| <histogram name="WebCore.IndexedDB.OpenTime.Blocked" units="ms">
|
| <owner>cmumford@chromium.org</owner>
|
| <summary>
|
| @@ -93793,6 +93813,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
|
| <int value="2" label="Array">Key path is an array of strings.</int>
|
| </enum>
|
|
|
| +<enum name="IDBKeyType" type="int">
|
| + <int value="0" label="Invalid">Invalid key.</int>
|
| + <int value="1" label="Array">Key is an array.</int>
|
| + <int value="2" label="Binary">Key is a binary buffer.</int>
|
| + <int value="3" label="String">Key is a string.</int>
|
| + <int value="4" label="Date">Key is a date.</int>
|
| + <int value="5" label="Number">Key is a number.</int>
|
| +</enum>
|
| +
|
| <enum name="IDBLevelDBBackingStoreInternalErrorType" type="int">
|
| <int value="0" label="IDBLevelDBBackingStoreReadError">
|
| IndexedDB encountered an error attempting to read or decode a value from the
|
|
|