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

Unified Diff: chrome/browser/chromeos/login/reauth_stats.h

Issue 1412813003: This CL replaces user_manager::UserID with AccountId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@468875--Chrome-OS-handles-deletion-of-Gmail-account-poorly--Create-AccountID-structure-part2--user_names
Patch Set: Rebased. 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:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/reauth_stats.h
diff --git a/chrome/browser/chromeos/login/reauth_stats.h b/chrome/browser/chromeos/login/reauth_stats.h
index 99bd159e92c6b5e18c2d82569428448b7b705834..222e76bdc6af4e5a081a594c3df4bddaf8f13946 100644
--- a/chrome/browser/chromeos/login/reauth_stats.h
+++ b/chrome/browser/chromeos/login/reauth_stats.h
@@ -7,6 +7,8 @@
#include <string>
+class AccountId;
+
namespace chromeos {
// Track all the ways a user may be sent through the re-auth flow.
@@ -51,8 +53,8 @@ enum ReauthReason {
NUM_REAUTH_FLOW_REASONS,
};
-void RecordReauthReason(const std::string& user_id, ReauthReason reason);
-void SendReauthReason(const std::string& user_id);
+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.
+void SendReauthReason(const AccountId& user_id);
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698