Index: chrome/browser/chromeos/login/reauth_stats.cc |
diff --git a/chrome/browser/chromeos/login/reauth_stats.cc b/chrome/browser/chromeos/login/reauth_stats.cc |
index f442c974f012efa6401590731e93e96e03bdffe0..2e99e74dbc94f53ca83030690ec1241c32e7d0b6 100644 |
--- a/chrome/browser/chromeos/login/reauth_stats.cc |
+++ b/chrome/browser/chromeos/login/reauth_stats.cc |
@@ -9,7 +9,7 @@ |
namespace chromeos { |
-void RecordReauthReason(const std::string& user_id, ReauthReason reason) { |
+void RecordReauthReason(const AccountId& user_id, ReauthReason reason) { |
achuithb
2015/10/23 00:08:50
account_id here and below
Alexander Alekseev
2015/10/23 09:11:21
Done.
|
user_manager::UserManager* user_manager = user_manager::UserManager::Get(); |
int old_reason; |
// We record only the first value, skipping everything else, except "none" |
@@ -21,7 +21,7 @@ void RecordReauthReason(const std::string& user_id, ReauthReason reason) { |
} |
} |
-void SendReauthReason(const std::string& user_id) { |
+void SendReauthReason(const AccountId& user_id) { |
user_manager::UserManager* user_manager = user_manager::UserManager::Get(); |
int reauth_reason; |
if (user_manager->FindReauthReason(user_id, &reauth_reason) && |