Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1650)

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 1325213002: customtabs: UMA histogram tracking whether clients call warmup(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + more tests. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/ClientManagerTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 1593ac61faa52e966e6e23b3d7808b92026939b9..45bddbc1984750ddb8ef8d5497cf927e45b39bde 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5482,6 +5482,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="CustomTabs.WarmupStateOnLaunch" enum="WarmupStateOnLaunch">
+ <owner>lizeb@chromium.org</owner>
+ <summary>
+ For Custom Tabs, records whether warmup() has been called when an Intent is
+ received from an application, and if so, whether the call could be matched
+ with a session or not.
+ </summary>
+</histogram>
+
<histogram name="DataReductionProxy.AutoLoFiAccuracy"
enum="DataReductionProxyAutoLoFiAccuracy">
<owner>bengr@chromium.org</owner>
@@ -73360,6 +73369,14 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="5" label="Policy"/>
</enum>
+<enum name="WarmupStateOnLaunch" type="int">
+ <int value="0" label="No Session, No Warmup"/>
+ <int value="1" label="No Session, Warmup"/>
+ <int value="2" label="Session, No Warmup, Called elsewhere"/>
pasko 2015/09/29 09:50:07 can we make 'elsewhere' clearer? Like: "Session, N
Benoit L 2015/09/29 10:07:42 Done.
+ <int value="3" label="Session, No Warmup, Not called"/>
pasko 2015/09/29 09:50:07 I thin this would be clearer: s/, Not called//
Benoit L 2015/09/29 10:07:42 Done.
+ <int value="4" label="Session, Warmup"/>
+</enum>
+
<enum name="WebBluetoothConnectGATTOutcome" type="int">
<int value="0" label="Success"/>
<int value="1" label="Device no longer in range"/>
« no previous file with comments | « chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/ClientManagerTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698