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

Unified Diff: ash/multi_profile_uma.cc

Issue 180243025: Changing the UsersPerSession UMA metric to only count possible multi profile sessions and do this u… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing windows build Created 6 years, 9 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/multi_profile_uma.h ('k') | chrome/browser/chromeos/login/user_manager_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/multi_profile_uma.cc
diff --git a/ash/multi_profile_uma.cc b/ash/multi_profile_uma.cc
index cbf3b059a35858bb1d37400a9129a5acbbd7026f..443fc35a8a79cf84cd35b6a31a7c45ce57f78198 100644
--- a/ash/multi_profile_uma.cc
+++ b/ash/multi_profile_uma.cc
@@ -45,7 +45,8 @@ void MultiProfileUMA::RecordTeleportAction(TeleportWindowAction action) {
// static
void MultiProfileUMA::RecordUserCount(int number_of_users) {
- UMA_HISTOGRAM_COUNTS_100("MultiProfile.UsersPerSession", number_of_users);
+ UMA_HISTOGRAM_COUNTS_100("MultiProfile.UsersPerSessionIncremental",
+ number_of_users);
}
// static
« no previous file with comments | « ash/multi_profile_uma.h ('k') | chrome/browser/chromeos/login/user_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698