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

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

Issue 147763008: [GCM] Unregistration request (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Final updates based on CR Created 6 years, 10 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 | « google_apis/gcm/gcm.gyp ('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 34974cf587c29f28ada5108773eaba27ac7eaa34..3e1ec76d889e252eabe55d438942f95cbab9b6b7 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5592,6 +5592,11 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="GCM.UnregistrationRequestStatus"
+ enum="GCMUnregistrationRequestStatus">
+ <summary>Status code of the outcome of a GCM unregistration request.</summary>
+</histogram>
+
<histogram name="GData.AuthSuccess" enum="GDataAuthResult">
<summary>Result of the authentication for Drive.</summary>
</histogram>
@@ -26559,6 +26564,19 @@ other types of suffix sets.
<int value="5" label="Unknown error"/>
</enum>
+<enum name="GCMUnregistrationRequestStatus" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="URL fetching failed"/>
+ <int value="2" label="No response body"/>
+ <int value="3" label="Response parsing failed"/>
+ <int value="4" label="Incorrect App Id"/>
+ <int value="5" label="Invalid parameters"/>
+ <int value="6" label="Service unavailable"/>
+ <int value="7" label="Internal server error"/>
+ <int value="8" label="HTTP reponse code not OK"/>
+ <int value="9" label="Unknown error"/>
+</enum>
+
<enum name="GDataAuthResult" type="int">
<int value="0" label="FAILURE"/>
<int value="1" label="SUCCESS"/>
« no previous file with comments | « google_apis/gcm/gcm.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698