Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 9bcf215df1130c91b8c57c6db1819f79215ea970..994d1b9661d459c6a4ef789d950f0d99514f2345 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -8037,6 +8037,9 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| <histogram name="DataReductionProxy.LoFi.UIAction" |
| enum="DataReductionProxyLoFiUIAction"> |
| + <obsolete> |
| + Deprecated as of 9/2016, replaced by Previews.ContextMenuAction.LoFi. |
| + </obsolete> |
| <owner>bengr@chromium.org</owner> |
| <owner>megjablon@chromium.org</owner> |
| <summary> |
| @@ -45994,6 +45997,59 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| </summary> |
| </histogram> |
| +<histogram name="Previews.ContextMenuAction.LoFi" |
|
Alexei Svitkine (slow)
2016/09/08 17:13:41
This seems to be adding a new top level prefix - "
megjablon
2016/09/08 18:26:13
Previews is the name for all features that rewrite
Alexei Svitkine (slow)
2016/09/08 20:32:07
I see, so it's a project codename? I'm still not a
megjablon
2016/09/08 23:24:47
We've already started using this name throughout t
|
| + enum="PreviewsContextMenuActionLoFi"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>megjablon@chromium.org</owner> |
| + <summary> |
| + Samples of user interactions with the Lo-Fi context menu options. These |
| + samples include: |
| + |
| + Displays and clicks on the "Load image" and "Load |
| + images" context menu options. Count of pages where the user has clicked |
| + "Load image" at least once. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Previews.InfoBarAction.LitePage" enum="PreviewsInfoBarAction"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>megjablon@chromium.org</owner> |
| + <summary> |
| + Samples of user interactions with the previews LitePage "Saved |
| + data" infobar. These samples include: |
| + |
| + Displays of the infobar and clicks on the "Load original" link. |
| + Whether the infobar was dismissed by navigation or the user clicking on |
| + "X" close button. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Previews.InfoBarAction.LoFi" enum="PreviewsInfoBarAction"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>megjablon@chromium.org</owner> |
| + <summary> |
| + Samples of user interactions with the previews Lo-Fi "Saved data" |
| + infobar. These samples include: |
| + |
| + Displays of the infobar and clicks on the "Load original" link. |
| + Whether the infobar was dismissed by navigation or the user clicking on |
| + "X" close button. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Previews.InfoBarAction.Offline" enum="PreviewsInfoBarAction"> |
| + <owner>bengr@chromium.org</owner> |
| + <owner>megjablon@chromium.org</owner> |
| + <summary> |
| + Samples of user interactions with the previews Offline "Faster page |
| + loaded" infobar. These samples include: |
| + |
| + Displays of the infobar and clicks on the "Load original" link. |
| + Whether the infobar was dismissed by navigation or the user clicking on |
| + "X" close button. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="PrinterService.PrinterServiceEvent" |
| enum="PrinterServiceEventType"> |
| <owner>vitalybuka@chromium.org</owner> |
| @@ -90965,6 +91021,22 @@ To add a new entry, add it with any value and run test to compute valid value. |
| <int value="3" label="tapdown + tapunconfirmed"/> |
| </enum> |
| +<enum name="PreviewsContextMenuActionLoFi" type="int"> |
| + <int value="0" label="'Load image' context menu item shown"/> |
| + <int value="1" label="'Load image' context menu item clicked"/> |
| + <int value="2" |
| + label="Pages where the user has clicked 'Load image' at least once"/> |
| + <int value="3" label="'Load images' context menu item shown"/> |
| + <int value="4" label="'Load images' context menu item clicked"/> |
| +</enum> |
| + |
| +<enum name="PreviewsInfoBarAction" type="int"> |
| + <int value="0" label="Infobar shown"/> |
| + <int value="1" label="Infobar 'Load original' clicked"/> |
| + <int value="2" label="Infobar dismissed by user"/> |
| + <int value="3" label="Infobar dismissed by navigation"/> |
| +</enum> |
| + |
| <enum name="PrinterServiceEventType" type="int"> |
| <int value="0" label="Printer added"/> |
| <int value="1" label="Page displayed (Deprecated)"/> |