diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/metrics/histograms/histograms.xml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml index 2e0e9c7..8550621 100644 --- a/tools/metrics/histograms/histograms.xml +++ b/tools/metrics/histograms/histograms.xml @@ -44403,6 +44403,49 @@ Therefore, the affected-histogram name has to have at least one dot in it. </summary> </histogram> +<histogram name="WebCore.IndexedDB.Schema.Index.KeyPathType" + enum="IDBKeyPathType"> + <owner>jsbell@chromium.org</owner> + <summary> + Records the 'keyPath' type (none, string, or array) during IDBObjectStore's + createIndex operation. See http://www.w3.org/TR/IndexedDB/ + </summary> +</histogram> + +<histogram name="WebCore.IndexedDB.Schema.Index.MultiEntry" enum="Boolean"> + <owner>jsbell@chromium.org</owner> + <summary> + Records the 'multiEntry' flag value during IDBObjectStore's createIndex + operation. See http://www.w3.org/TR/IndexedDB/ + </summary> +</histogram> + +<histogram name="WebCore.IndexedDB.Schema.Index.Unique" enum="Boolean"> + <owner>jsbell@chromium.org</owner> + <summary> + Records the 'unique' flag value during IDBObjectStore's createIndex + operation. See http://www.w3.org/TR/IndexedDB/ + </summary> +</histogram> + +<histogram name="WebCore.IndexedDB.Schema.ObjectStore.AutoIncrement" + enum="Boolean"> + <owner>jsbell@chromium.org</owner> + <summary> + Records the 'autoIncrement' flag value during IDBDatabase's + createObjectStore operation. See http://www.w3.org/TR/IndexedDB/ + </summary> +</histogram> + +<histogram name="WebCore.IndexedDB.Schema.ObjectStore.KeyPathType" + enum="IDBKeyPathType"> + <owner>jsbell@chromium.org</owner> + <summary> + Records the 'keyPath' type (none, string, or array) during IDBDatabase's + createObjectStore operation. See http://www.w3.org/TR/IndexedDB/ + </summary> +</histogram> + <histogram name="WebCore.PreloadDelayMs" units="milliseconds"> <owner>Please list the metric's owners. Add more owner tags as needed.</owner> <summary> @@ -53423,6 +53466,12 @@ Therefore, the affected-histogram name has to have at least one dot in it. </int> </enum> +<enum name="IDBKeyPathType" type="int"> + <int value="0" label="None">No key path.</int> + <int value="1" label="String">Key path is a string.</int> + <int value="2" label="Array">Key path is an array of strings.</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 |