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

Unified Diff: chrome/browser/resources/chromeos/login/screen_account_picker.js

Issue 8773046: [cros] Display emails of users are stored in a separate dictionary in Local State. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years 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/resources/chromeos/login/screen_account_picker.js
diff --git a/chrome/browser/resources/chromeos/login/screen_account_picker.js b/chrome/browser/resources/chromeos/login/screen_account_picker.js
index 977acd020c0936d549cfb3844dc3c715c1fc198c..a5f012fe9c81f94c57ed3258f2303cf2d74feb35 100644
--- a/chrome/browser/resources/chromeos/login/screen_account_picker.js
+++ b/chrome/browser/resources/chromeos/login/screen_account_picker.js
@@ -83,11 +83,11 @@ cr.define('login', function() {
/**
* Updates current image of a user.
- * @param {string} email Email of the user for which to update the image.
+ * @param {string} username User for which to update the image.
* @public
*/
- AccountPickerScreen.updateUserImage = function(email) {
- $('pod-row').updateUserImage(email);
+ AccountPickerScreen.updateUserImage = function(username) {
+ $('pod-row').updateUserImage(username);
};
/**

Powered by Google App Engine
This is Rietveld 408576698