| Index: chrome/browser/resources/options/browser_options_profile_list.js
|
| diff --git a/chrome/browser/resources/options/browser_options_profile_list.js b/chrome/browser/resources/options/browser_options_profile_list.js
|
| index 7a60ca3cf16459fd0869351e1fa9bab70b9639f4..a51b5b7bfd0ee7d79e20d5b37e46d48a807e32e3 100644
|
| --- a/chrome/browser/resources/options/browser_options_profile_list.js
|
| +++ b/chrome/browser/resources/options/browser_options_profile_list.js
|
| @@ -54,7 +54,7 @@ cr.define('options.browser_options', function() {
|
|
|
| var iconEl = this.ownerDocument.createElement('img');
|
| iconEl.className = 'profile-img';
|
| - iconEl.style.content = imageset(profileInfo.iconURL + '@scalefactorx');
|
| + iconEl.style.content = getProfileAvatarIcon(profileInfo.iconURL);
|
| this.contentElement.appendChild(iconEl);
|
|
|
| var nameEl = this.ownerDocument.createElement('div');
|
| @@ -126,4 +126,3 @@ cr.define('options.browser_options', function() {
|
| ProfileList: ProfileList
|
| };
|
| });
|
| -
|
|
|