Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- | 1 <!-- |
|
Joao da Silva
2013/07/23 20:44:47
This file shouldn't be included.
Steve Condie
2013/07/24 01:42:04
Done.
| |
| 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 |
| 11 Please pretty-print and validate your edits by running the pretty_print.py | 11 Please pretty-print and validate your edits by running the pretty_print.py |
| (...skipping 2385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2397 </summary> | 2397 </summary> |
| 2398 </histogram> | 2398 </histogram> |
| 2399 | 2399 |
| 2400 <histogram name="Enterprise.Policy" enum="EnterprisePolicyType"> | 2400 <histogram name="Enterprise.Policy" enum="EnterprisePolicyType"> |
| 2401 <summary> | 2401 <summary> |
| 2402 Events related to fetching, saving and loading user policies, and also | 2402 Events related to fetching, saving and loading user policies, and also |
| 2403 device policies on ChromeOS. | 2403 device policies on ChromeOS. |
| 2404 </summary> | 2404 </summary> |
| 2405 </histogram> | 2405 </histogram> |
| 2406 | 2406 |
| 2407 <histogram name="Enterprise.PolicyInvalidations" enum="EnterprisePolicyInvalidat ions"> | |
| 2408 <summary> | |
| 2409 Events for receiving different types of invalidations. | |
| 2410 </summary> | |
| 2411 </histogram> | |
| 2412 | |
| 2407 <histogram name="Enterprise.PolicyLoadStatus" enum="EnterprisePolicyLoadStatus"> | 2413 <histogram name="Enterprise.PolicyLoadStatus" enum="EnterprisePolicyLoadStatus"> |
| 2408 <summary> | 2414 <summary> |
| 2409 Load status from the policy loaders which pull policy settings from the | 2415 Load status from the policy loaders which pull policy settings from the |
| 2410 underlying platform, such as Windows Group Policy. | 2416 underlying platform, such as Windows Group Policy. |
| 2411 </summary> | 2417 </summary> |
| 2412 </histogram> | 2418 </histogram> |
| 2413 | 2419 |
| 2420 <histogram name="Enterprise.PolicyRefresh" enum="EnterprisePolicyRefresh"> | |
| 2421 <summary> | |
| 2422 Events measuring effectiveness of refreshing policy when invalidations | |
| 2423 are received from a service. | |
| 2424 </summary> | |
| 2425 </histogram> | |
| 2426 | |
| 2414 <histogram name="Event.CoalescedCount.Mouse"> | 2427 <histogram name="Event.CoalescedCount.Mouse"> |
| 2415 <summary>Number of Mouse events coalesced.</summary> | 2428 <summary>Number of Mouse events coalesced.</summary> |
| 2416 </histogram> | 2429 </histogram> |
| 2417 | 2430 |
| 2418 <histogram name="Event.CoalescedCount.Touch"> | 2431 <histogram name="Event.CoalescedCount.Touch"> |
| 2419 <summary>Number of Touch events coalesced.</summary> | 2432 <summary>Number of Touch events coalesced.</summary> |
| 2420 </histogram> | 2433 </histogram> |
| 2421 | 2434 |
| 2422 <histogram name="Event.CoalescedLatency.Mouse" units="milliseconds"> | 2435 <histogram name="Event.CoalescedLatency.Mouse" units="milliseconds"> |
| 2423 <summary> | 2436 <summary> |
| (...skipping 13514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 15938 <int value="5" label="WOW64_REDIRECTION_DISABLED"> | 15951 <int value="5" label="WOW64_REDIRECTION_DISABLED"> |
| 15939 Trying with Wow64 redirection disabled. | 15952 Trying with Wow64 redirection disabled. |
| 15940 </int> | 15953 </int> |
| 15941 <int value="6" label="READ_ERROR"> | 15954 <int value="6" label="READ_ERROR"> |
| 15942 Data read error, for example file reading errors. | 15955 Data read error, for example file reading errors. |
| 15943 </int> | 15956 </int> |
| 15944 <int value="7" label="TOO_BIG">Data too large to process.</int> | 15957 <int value="7" label="TOO_BIG">Data too large to process.</int> |
| 15945 <int value="8" label="PARSE_ERROR">Parse error.</int> | 15958 <int value="8" label="PARSE_ERROR">Parse error.</int> |
| 15946 </enum> | 15959 </enum> |
| 15947 | 15960 |
| 15961 <enum name="EnterprisePolicyInvalidations" type="int"> | |
| 15962 <summary> | |
| 15963 Status codes representing types of policy invalidations received. | |
| 15964 </summary> | |
| 15965 <int value="0" label="PAYLOAD"> | |
| 15966 The invalidation contains a payload. | |
| 15967 </int> | |
| 15968 <int value="1" label="NO_PAYLOAD"> | |
| 15969 The invalidation contains no payload. | |
| 15970 </int> | |
| 15971 </enum> | |
| 15972 | |
| 15973 <enum name="EnterprisePolicyRefresh" type="int"> | |
| 15974 <summary> | |
| 15975 Status codes representing whether a policy was invalidated when it was | |
| 15976 refreshed and whether the refresh resulted in changed policy values. | |
| 15977 </summary> | |
| 15978 <int value="0" label="CHANGED"> | |
| 15979 Policy was not invalidated; policy was changed. | |
| 15980 </int> | |
| 15981 <int value="1" label="UNCHANGED"> | |
| 15982 Policy was not invalidated; policy was unchanged. | |
| 15983 </int> | |
| 15984 <int value="2" label="INVALIDATED_CHANGED"> | |
| 15985 Policy was invalidated; policy was changed. | |
| 15986 </int> | |
| 15987 <int value="3" label="INVALIDATED_UNCHANGED"> | |
| 15988 Policy was invalidated; policy was unchanged. | |
| 15989 </int> | |
| 15990 </enum> | |
| 15991 | |
| 15948 <enum name="EnterprisePolicyType" type="int"> | 15992 <enum name="EnterprisePolicyType" type="int"> |
| 15949 <summary> | 15993 <summary> |
| 15950 Result of Policy operations as defined in | 15994 Result of Policy operations as defined in |
| 15951 chrome/browser/policy/enterprise_metrics.h. | 15995 chrome/browser/policy/enterprise_metrics.h. |
| 15952 </summary> | 15996 </summary> |
| 15953 <int value="0" label="Load Succeeded"> | 15997 <int value="0" label="Load Succeeded"> |
| 15954 A cached policy was successfully loaded from disk. | 15998 A cached policy was successfully loaded from disk. |
| 15955 </int> | 15999 </int> |
| 15956 <int value="1" label="Load Failed"> | 16000 <int value="1" label="Load Failed"> |
| 15957 Reading a cached policy from disk failed. | 16001 Reading a cached policy from disk failed. |
| (...skipping 7458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 23416 <group name="Disabled" label="Neither extra webstore link is visible"/> | 23460 <group name="Disabled" label="Neither extra webstore link is visible"/> |
| 23417 <group name="FooterLink" label="Link in bottom right of footer"/> | 23461 <group name="FooterLink" label="Link in bottom right of footer"/> |
| 23418 <group name="PlusIcon" label="Plus icon in apps page"/> | 23462 <group name="PlusIcon" label="Plus icon in apps page"/> |
| 23419 <affected-histogram name="Extensions.AppLaunch"/> | 23463 <affected-histogram name="Extensions.AppLaunch"/> |
| 23420 <affected-histogram name="NewTabPage.DefaultPageType"/> | 23464 <affected-histogram name="NewTabPage.DefaultPageType"/> |
| 23421 </fieldtrial> | 23465 </fieldtrial> |
| 23422 | 23466 |
| 23423 </fieldtrials> | 23467 </fieldtrials> |
| 23424 | 23468 |
| 23425 </histogram-configuration> | 23469 </histogram-configuration> |
| OLD | NEW |