| Index: ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js
|
| diff --git a/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js b/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js
|
| index 9f6f9da4da03ac8703b002892ba6c3edb50f20f0..df8421e06cd761250d7ddc4012f8b5c4fedcdcea 100644
|
| --- a/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js
|
| +++ b/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js
|
| @@ -18,19 +18,13 @@ Polymer({
|
| * The list of profile avatar URLs and labels.
|
| * @type {!Array<!AvatarIcon>}
|
| */
|
| - avatars: {
|
| - type: Array,
|
| - value: function() { return []; }
|
| - },
|
| + avatars: {type: Array, value: function() { return []; }},
|
|
|
| /**
|
| * The currently selected profile avatar URL. May be a data URI.
|
| * @type {string}
|
| */
|
| - selectedAvatarUrl: {
|
| - type: String,
|
| - notify: true
|
| - },
|
| + selectedAvatarUrl: {type: String, notify: true},
|
|
|
| ignoreModifiedKeyEvents: {
|
| type: Boolean,
|
| @@ -43,7 +37,5 @@ Polymer({
|
| * @return {string} A CSS imageset for multiple scale factors.
|
| * @private
|
| */
|
| - getIconImageset_: function(iconUrl) {
|
| - return cr.icon.getImage(iconUrl);
|
| - },
|
| + getIconImageset_: function(iconUrl) { return cr.icon.getImage(iconUrl); },
|
| });
|
|
|