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

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: Fix Win GN build. Created 5 years, 1 month 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 | « chrome/browser/chromeos/login/login_manager_test.cc ('k') | chrome/browser/chromeos/login/reauth_stats.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..d62489f29a267aed26cc985c7463679c72d4e53c 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& account_id, ReauthReason reason);
+void SendReauthReason(const AccountId& account_id);
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/login/login_manager_test.cc ('k') | chrome/browser/chromeos/login/reauth_stats.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698