| 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 3646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4023 <int value="10" label="User edited autofilled field"/> | 4046 <int value="10" label="User edited autofilled field"/> |
| 4024 <int value="11" label="User edited autofilled field (once)"/> | 4047 <int value="11" label="User edited autofilled field (once)"/> |
| 4025 </enum> | 4048 </enum> |
| 4026 | 4049 |
| 4027 <enum name="BackingStoreResults" type="int"> | 4050 <enum name="BackingStoreResults" type="int"> |
| 4028 <int value="0" label="Unused"/> | 4051 <int value="0" label="Unused"/> |
| 4029 <int value="1" label="Success"/> | 4052 <int value="1" label="Success"/> |
| 4030 <int value="2" label="Failure"/> | 4053 <int value="2" label="Failure"/> |
| 4031 </enum> | 4054 </enum> |
| 4032 | 4055 |
| 4056 <enum name="BluetoothPairingMethod" type="int"> |
| 4057 <int value="0" label="No user interaction required"/> |
| 4058 <int value="1" label="PIN Code requested from user"/> |
| 4059 <int value="2" label="Passkey requested from user"/> |
| 4060 <int value="3" label="PIN Code entered into device"/> |
| 4061 <int value="4" label="Passkey entered into device"/> |
| 4062 <int value="5" label="Passkey confirmed on both devices"/> |
| 4063 </enum> |
| 4064 |
| 4065 <enum name="BluetoothPairingResult" type="int"> |
| 4066 <int value="0" label="Success"/> |
| 4067 <int value="1" label="Connection already in-progress"/> |
| 4068 <int value="2" label="Failed for non-specific reason"/> |
| 4069 <int value="3" label="Authentication failed"/> |
| 4070 <int value="4" label="Authentication canceled"/> |
| 4071 <int value="5" label="Authentication rejected"/> |
| 4072 <int value="6" label="Authentication timed out"/> |
| 4073 <int value="7" label="Unsupported device"/> |
| 4074 <int value="8" label="Unknown or unhandler error"/> |
| 4075 </enum> |
| 4076 |
| 4033 <enum name="BooleanAttempted" type="int"> | 4077 <enum name="BooleanAttempted" type="int"> |
| 4034 <int value="0" label="Not Attempted"/> | 4078 <int value="0" label="Not Attempted"/> |
| 4035 <int value="1" label="Attempted"/> | 4079 <int value="1" label="Attempted"/> |
| 4036 </enum> | 4080 </enum> |
| 4037 | 4081 |
| 4038 <enum name="BooleanCovered" type="int"> | 4082 <enum name="BooleanCovered" type="int"> |
| 4039 <int value="0" label="Not Covered"/> | 4083 <int value="0" label="Not Covered"/> |
| 4040 <int value="1" label="Covered"/> | 4084 <int value="1" label="Covered"/> |
| 4041 </enum> | 4085 </enum> |
| 4042 | 4086 |
| (...skipping 3282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7325 <fieldtrial name="SSLResumption"> | 7369 <fieldtrial name="SSLResumption"> |
| 7326 <group name="Resume_Handshake" label="Session Resumption"/> | 7370 <group name="Resume_Handshake" label="Session Resumption"/> |
| 7327 <group name="Full_Handshake" label="Full"/> | 7371 <group name="Full_Handshake" label="Full"/> |
| 7328 <affected-histogram name="Net.SSL_Connection_Latency"/> | 7372 <affected-histogram name="Net.SSL_Connection_Latency"/> |
| 7329 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> | 7373 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> |
| 7330 </fieldtrial> | 7374 </fieldtrial> |
| 7331 | 7375 |
| 7332 </fieldtrials> | 7376 </fieldtrials> |
| 7333 | 7377 |
| 7334 </histogram-configuration> | 7378 </histogram-configuration> |
| OLD | NEW |