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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2643723004: Add Desktop iOS promotion logging to chrome ios app. (Closed)
Patch Set: create new file for sync service & move prefs to pref_names.h Created 3 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 5797b34d5f6a464db54343e1e5f82d15fe0ae728..584b2460b576a3789afaaa840f2b58b40f6ac0c1 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -10058,6 +10058,30 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="DesktopIOSPromotion.CompletionTime" units="hours">
+ <owner>mrefaat@chromium.org</owner>
+ <summary>
+ [IOS] Time between when the client time of triggering the SMS action on a
+ specific entry point promotion on desktop and client time of signing in
+ Chrome iOS app. CompletionTime will be prefixed by the entry point promotion
+ name that was responsible for the SMS sending.
Mark P 2017/01/26 23:47:24 Please say something about negative times (due to
mrefaat 2017/01/27 18:29:42 Done.
+ </summary>
+</histogram>
+
+<histogram name="DesktopIOSPromotion.IOSSigninReason"
+ enum="DesktopIOSPromotionEntryPoint">
+ <owner>mrefaat@chromium.org</owner>
+ <summary>
+ [IOS] For users who sign-in on Chrome for iOS, log the type of the desktop
+ iOS promotions that was shown to the user. This will only be logged if at
+ least one promotion was shown to this user on the last 7 days IOSigninReason
+ will be prefixed to indicate if there was SMS sent from the promotion or
+ not. DesktopIOSPromotion.SMSSent.IOSSigninReason will be logged at most once
+ per each user, as once the user have recieved and sms and completed the
+ cycle they will not see any other desktop to iOS promotion again.
Mark P 2017/01/26 23:47:24 This last part doesn't make sense to me. It says
mrefaat 2017/01/27 18:29:42 It will be logged at most once because you have to
+ </summary>
+</histogram>
+
<histogram name="DevTools.ActionTaken" enum="DevToolsAction">
<owner>sergeyv@chromium.org</owner>
<owner>vsevik@chromium.org</owner>
@@ -83676,6 +83700,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="12" label="Tab capturer created without audio capturer."/>
</enum>
+<enum name="DesktopIOSPromotionEntryPoint" type="int">
+ <int value="1" label="Save Passwords new bubble."/>
+ <int value="2" label="Bookmarks new bubble."/>
+ <int value="3" label="Bookmarks existing bubble."/>
+ <int value="4" label="HistoryPage."/>
+</enum>
+
<enum name="DesktopSearchRedirectionInfobarCloseAction" type="int">
<int value="0" label="Clicked the 'Manage search settings' link"/>
<int value="1" label="Clicked the dismiss button"/>
@@ -112394,6 +112425,22 @@ value.
name="Prerender.SimulatedLocalBrowsingPLT_PrerenderNoUse"/>
</histogram_suffixes>
+<histogram_suffixes name="DesktopIOSEntryPoints" separator="."
+ ordering="prefix">
+ <suffix name="SavePasswordsNewBubble"/>
+ <suffix name="BookmarksNewBubble"/>
+ <suffix name="BookmarksExistingBubble"/>
+ <suffix name="HistoryPage"/>
+ <affected-histogram name="DesktopIOSPromotion.CompletionTime"/>
+</histogram_suffixes>
+
+<histogram_suffixes name="DesktopIOSPromotionSMSSent" separator="."
+ ordering="prefix">
+ <suffix name="SMSSent" label="SMS sent from the promotion."/>
+ <suffix name="NoSMS" label="No SMS was sent from the promotion."/>
+ <affected-histogram name="DesktopIOSPromotion.IOSSigninReason"/>
+</histogram_suffixes>
+
<histogram_suffixes name="DiskUsagePerUserCount" separator=".">
<suffix name="1User" label="Only 1 user exists on device."/>
<suffix name="2Users" label="2 users exist on device."/>

Powered by Google App Engine
This is Rietveld 408576698