 Chromium Code Reviews
 Chromium Code Reviews Issue 1146813010:
  Introduce moderate binding  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1146813010:
  Introduce moderate binding  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: tools/metrics/histograms/histograms.xml | 
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml | 
| index c94c2ef25d920fa69d459bafbb70bc9c065309c4..102dadf0ec9f5a2baaf932fba183ade5d07ba3f5 100644 | 
| --- a/tools/metrics/histograms/histograms.xml | 
| +++ b/tools/metrics/histograms/histograms.xml | 
| @@ -268,6 +268,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. | 
| </summary> | 
| </histogram> | 
| +<histogram name="Android.ModerateBindingCount" units="bindings"> | 
| + <owner>jaekyun@chromium.org</owner> | 
| + <summary> | 
| + The number of moderate bindings which were kept while Chrome process is in | 
| + the foreground. This is logged right before Chrome process goes into the | 
| + background. | 
| + </summary> | 
| +</histogram> | 
| + | 
| <histogram name="Android.SeccompStatus.Prctl" enum="AndroidSeccompStatus"> | 
| <owner>rsesek@chromium.org</owner> | 
| <summary> | 
| @@ -44050,6 +44059,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. | 
| </summary> | 
| </histogram> | 
| +<histogram name="Tab.RendererCrashStatus" enum="TabRendererCrashStatus"> | 
| + <owner>jaekyun@chromium.org</owner> | 
| + <summary> | 
| + The status of a tab and an application when a renderer crashes. This is | 
| + recorded when a renderer crashes. | 
| 
Alexei Svitkine (slow)
2015/06/19 17:17:56
Mention that this is platform specific (and which
 
Jaekyun Seok (inactive)
2015/06/22 01:48:57
Done.
 | 
| + </summary> | 
| +</histogram> | 
| + | 
| <histogram name="Tab.RestoreResult" enum="TabRestoreResult"> | 
| <owner>lliabraa@chromium.org</owner> | 
| <summary> | 
| @@ -44176,6 +44193,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. | 
| </summary> | 
| </histogram> | 
| +<histogram name="Tab.TotalTabCountBeforeLeavingApp" units="tabs"> | 
| 
Alexei Svitkine (slow)
2015/06/19 17:17:56
Nit: Suggest renaming to Tab.TotalTabCount.BeforeL
 
Jaekyun Seok (inactive)
2015/06/22 01:48:57
Done.
 | 
| + <owner>jaekyun@chromium.org</owner> | 
| + <summary> | 
| + The total count of tabs which were kept while Chrome process is in the | 
| + foreground. This is logged right before Chrome process goes into the | 
| + background. | 
| 
Alexei Svitkine (slow)
2015/06/19 17:17:56
Ditto about mentioning platform.
 
Jaekyun Seok (inactive)
2015/06/22 01:48:57
Done.
 | 
| + </summary> | 
| +</histogram> | 
| + | 
| <histogram name="Tabs.CountAtResume" units="tabs"> | 
| <owner>lliabraa@chromium.org</owner> | 
| <summary> | 
| @@ -67327,6 +67353,12 @@ To add a new entry, add it with any value and run test to compute valid value. | 
| <int value="2" label="Not loaded on creation"/> | 
| </enum> | 
| +<enum name="TabRendererCrashStatus" type="int"> | 
| + <int value="0" label="Shown in foreground app"/> | 
| + <int value="1" label="Hidden in foreground app"/> | 
| + <int value="2" label="Hidden in background app"/> | 
| +</enum> | 
| + | 
| <enum name="TabRestoreResult" type="int"> | 
| <int value="0" label="Failure (other)"/> | 
| <int value="1" label="Success"/> |