| Index: chrome/browser/resources/options/personal_options_profile_list.js
|
| diff --git a/chrome/browser/resources/options/personal_options_profile_list.js b/chrome/browser/resources/options/personal_options_profile_list.js
|
| index 0b67df08785b8a219224bd96c82cdafff763ed93..755150c44caaff6788b5a092ba4eb781adaad99e 100644
|
| --- a/chrome/browser/resources/options/personal_options_profile_list.js
|
| +++ b/chrome/browser/resources/options/personal_options_profile_list.js
|
| @@ -48,10 +48,15 @@ cr.define('options.personal_options', function() {
|
|
|
| var profileInfo = this.profileInfo_;
|
|
|
| - var nameEl = this.contentElement;
|
| - nameEl.className = 'profile-item';
|
| + var iconEl = this.ownerDocument.createElement('img');
|
| + iconEl.className = 'profile-img';
|
| + iconEl.src = profileInfo.iconURL;
|
| + this.contentElement.appendChild(iconEl);
|
| +
|
| + var nameEl = this.ownerDocument.createElement('div');
|
| if (profileInfo.isCurrentProfile)
|
| nameEl.classList.add('profile-item-current');
|
| + this.contentElement.appendChild(nameEl);
|
|
|
| var displayName = profileInfo.name;
|
| if (profileInfo.isCurrentProfile)
|
|
|