| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2013 The Chromium Authors. All rights reserved. | 2 Copyright 2013 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <!-- | 7 <!-- |
| 8 This file is used to generate a comprehensive list of Chrome histograms along | 8 This file is used to generate a comprehensive list of Chrome histograms along |
| 9 with a detailed description for each histogram. | 9 with a detailed description for each histogram. |
| 10 | 10 |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 </histogram> | 357 </histogram> |
| 358 | 358 |
| 359 <histogram name="Autofill.UserHappiness" enum="AutofillUserHappiness"> | 359 <histogram name="Autofill.UserHappiness" enum="AutofillUserHappiness"> |
| 360 <summary> | 360 <summary> |
| 361 Measures the frequency of various events in the Autofill user interaction | 361 Measures the frequency of various events in the Autofill user interaction |
| 362 flow. By comparing frequencies, we can compute several interesting | 362 flow. By comparing frequencies, we can compute several interesting |
| 363 "user happiness" metrics. | 363 "user happiness" metrics. |
| 364 </summary> | 364 </summary> |
| 365 </histogram> | 365 </histogram> |
| 366 | 366 |
| 367 <histogram name="Bluetooth.ConnectedDeviceCount" units="devices"> |
| 368 <summary> |
| 369 Counts the number of simulataneously connected Bluetooth devices. Used to |
| 370 direct testing efforts, and by our UI team to determine appropriate UI |
| 371 sizes. |
| 372 </summary> |
| 373 </histogram> |
| 374 |
| 375 <histogram name="Bluetooth.PairingMethod" enum="BluetoothPairingMethod"> |
| 376 <summary> |
| 377 Records the method used to pair each Bluetooth Device. Used to direct our |
| 378 testing efforts. |
| 379 </summary> |
| 380 </histogram> |
| 381 |
| 382 <histogram name="Bluetooth.PairingResult" enum="BluetoothPairingResult"> |
| 383 <summary> |
| 384 Records the result of pairing each Bluetooth Device. Used to understand |
| 385 whether we are having significant problems with Bluetooth pairing and seeing |
| 386 errors more commonly than we should. |
| 387 </summary> |
| 388 </histogram> |
| 389 |
| 367 <histogram name="Clipboard.IncognitoUseCase" enum="ClipboardAction"> | 390 <histogram name="Clipboard.IncognitoUseCase" enum="ClipboardAction"> |
| 368 <obsolete> | 391 <obsolete> |
| 369 Deprecated as of 4/2013, experiment confirmed correctness of our patch. | 392 Deprecated as of 4/2013, experiment confirmed correctness of our patch. |
| 370 </obsolete> | 393 </obsolete> |
| 371 <summary> | 394 <summary> |
| 372 Counts how often the user writes or reads from the clipboard and whether the | 395 Counts how often the user writes or reads from the clipboard and whether the |
| 373 write was from an incognito window or not. | 396 write was from an incognito window or not. |
| 374 </summary> | 397 </summary> |
| 375 </histogram> | 398 </histogram> |
| 376 | 399 |
| (...skipping 3658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4035 <int value="10" label="User edited autofilled field"/> | 4058 <int value="10" label="User edited autofilled field"/> |
| 4036 <int value="11" label="User edited autofilled field (once)"/> | 4059 <int value="11" label="User edited autofilled field (once)"/> |
| 4037 </enum> | 4060 </enum> |
| 4038 | 4061 |
| 4039 <enum name="BackingStoreResults" type="int"> | 4062 <enum name="BackingStoreResults" type="int"> |
| 4040 <int value="0" label="Unused"/> | 4063 <int value="0" label="Unused"/> |
| 4041 <int value="1" label="Success"/> | 4064 <int value="1" label="Success"/> |
| 4042 <int value="2" label="Failure"/> | 4065 <int value="2" label="Failure"/> |
| 4043 </enum> | 4066 </enum> |
| 4044 | 4067 |
| 4068 <enum name="BluetoothPairingMethod" type="int"> |
| 4069 <int value="0" label="No user interaction required"/> |
| 4070 <int value="1" label="PIN Code requested from user"/> |
| 4071 <int value="2" label="Passkey requested from user"/> |
| 4072 <int value="3" label="PIN Code entered into device"/> |
| 4073 <int value="4" label="Passkey entered into device"/> |
| 4074 <int value="5" label="Passkey confirmed on both devices"/> |
| 4075 </enum> |
| 4076 |
| 4077 <enum name="BluetoothPairingResult" type="int"> |
| 4078 <int value="0" label="Success"/> |
| 4079 <int value="1" label="Connection already in-progress"/> |
| 4080 <int value="2" label="Failed for non-specific reason"/> |
| 4081 <int value="3" label="Authentication failed"/> |
| 4082 <int value="4" label="Authentication canceled"/> |
| 4083 <int value="5" label="Authentication rejected"/> |
| 4084 <int value="6" label="Authentication timed out"/> |
| 4085 <int value="7" label="Unsupported device"/> |
| 4086 <int value="8" label="Unknown or unhandler error"/> |
| 4087 </enum> |
| 4088 |
| 4045 <enum name="BooleanAttempted" type="int"> | 4089 <enum name="BooleanAttempted" type="int"> |
| 4046 <int value="0" label="Not Attempted"/> | 4090 <int value="0" label="Not Attempted"/> |
| 4047 <int value="1" label="Attempted"/> | 4091 <int value="1" label="Attempted"/> |
| 4048 </enum> | 4092 </enum> |
| 4049 | 4093 |
| 4050 <enum name="BooleanCovered" type="int"> | 4094 <enum name="BooleanCovered" type="int"> |
| 4051 <int value="0" label="Not Covered"/> | 4095 <int value="0" label="Not Covered"/> |
| 4052 <int value="1" label="Covered"/> | 4096 <int value="1" label="Covered"/> |
| 4053 </enum> | 4097 </enum> |
| 4054 | 4098 |
| (...skipping 3297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7352 <fieldtrial name="SSLResumption"> | 7396 <fieldtrial name="SSLResumption"> |
| 7353 <group name="Resume_Handshake" label="Session Resumption"/> | 7397 <group name="Resume_Handshake" label="Session Resumption"/> |
| 7354 <group name="Full_Handshake" label="Full"/> | 7398 <group name="Full_Handshake" label="Full"/> |
| 7355 <affected-histogram name="Net.SSL_Connection_Latency"/> | 7399 <affected-histogram name="Net.SSL_Connection_Latency"/> |
| 7356 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> | 7400 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> |
| 7357 </fieldtrial> | 7401 </fieldtrial> |
| 7358 | 7402 |
| 7359 </fieldtrials> | 7403 </fieldtrials> |
| 7360 | 7404 |
| 7361 </histogram-configuration> | 7405 </histogram-configuration> |
| OLD | NEW |