Index: chrome/browser/resources/options/managed_user_list.js |
diff --git a/chrome/browser/resources/options/managed_user_list.js b/chrome/browser/resources/options/managed_user_list.js |
index 747dcf3e2e8943a04f4501eeeb00076c3ec34f8b..4af84c64c14a89d9d0f8e41c5b07f40cadce22dc 100644 |
--- a/chrome/browser/resources/options/managed_user_list.js |
+++ b/chrome/browser/resources/options/managed_user_list.js |
@@ -62,7 +62,8 @@ cr.define('options.managedUserOptions', function() { |
// Add the avatar. |
var iconElement = this.ownerDocument.createElement('img'); |
iconElement.className = 'profile-img'; |
- iconElement.src = managedUser.iconURL; |
+ iconElement.style.content = |
+ imageset(managedUser.iconURL + '@scalefactorx'); |
this.appendChild(iconElement); |
// Add the profile name. |
@@ -78,7 +79,7 @@ cr.define('options.managedUserOptions', function() { |
// Add "(already on this device)" message. |
var alreadyOnDeviceElement = this.ownerDocument.createElement('div'); |
alreadyOnDeviceElement.className = |
- 'profile-name profile-name-disabled already-on-this-device'; |
+ 'profile-name-disabled already-on-this-device'; |
alreadyOnDeviceElement.textContent = |
loadTimeData.getString('managedUserAlreadyOnThisDevice'); |
this.appendChild(alreadyOnDeviceElement); |