Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 999559cd94f7f5c8ba14412397a1ae2110561a0c..60c3cd2e707aa026294b80983a46bd982f369a2c 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -19893,6 +19893,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| </summary> |
| </histogram> |
| +<histogram name="Memory.CompressibleStringCount" |
| + enum="CompressibleStringCountType"> |
| + <owner>hajimehoshi@chromium.org</owner> |
| + <summary> |
| + The count of CompressibleString for JavaScript source stirngs in a |
|
Ilya Sherman
2016/01/20 01:42:39
nit: s/stirngs/strings
|
| + background tab. This checks how often V8 requires JavaScript source strings |
| + and decopressing is required in the background tab. |
|
Ilya Sherman
2016/01/20 01:42:38
nit: s/decopressing/decompressing
Ilya Sherman
2016/01/20 01:42:39
Please document when this is recorded -- once a mi
hajimehoshi
2016/01/20 10:17:17
Done.
|
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Memory.DiscardableAllocationSize" units="KB"> |
| <owner>reveman@chromium.org</owner> |
| <summary> |
| @@ -58669,6 +58679,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| <int value="1" label="GPU compositor"/> |
| </enum> |
| +<enum name="CompressibleStringCountType" type="int"> |
| + <int value="0" label="Compressed in a background tab"/> |
| + <int value="1" label="Decompressed in a background tab"/> |
| + <int value="2" label="Decompressed in a foreground tab"/> |
| +</enum> |
| + |
| <enum name="ComputeCurrentSigninStatus" type="int"> |
| <int value="0" label="Tried to compute current signin status."/> |
| <int value="1" label="Error: No profiles found."/> |