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

Unified Diff: chromeos/cryptohome/cryptohome_parameters.cc

Issue 1165323004: We should use UserID object to identify users instead of username. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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: chromeos/cryptohome/cryptohome_parameters.cc
diff --git a/chromeos/cryptohome/cryptohome_parameters.cc b/chromeos/cryptohome/cryptohome_parameters.cc
index 5b3ac4d4372cab188879a70c44222ed22e442f46..32fd3f841d118519c4fc3f53335e22f4f8393199 100644
--- a/chromeos/cryptohome/cryptohome_parameters.cc
+++ b/chromeos/cryptohome/cryptohome_parameters.cc
@@ -8,7 +8,7 @@
namespace cryptohome {
-Identification::Identification(const std::string& user_id) : user_id(user_id) {
+Identification::Identification(const user_manager::UserID& user_id) : user_id(user_id) {
}
bool Identification::operator==(const Identification& other) const {

Powered by Google App Engine
This is Rietveld 408576698