| Index: chrome/browser/resources/options2/browser_options_profile_list.js
|
| diff --git a/chrome/browser/resources/options2/browser_options_profile_list.js b/chrome/browser/resources/options2/browser_options_profile_list.js
|
| index 7718d4a276f60c82f00b416f3e0b703e68be9a5b..6192ac381932101d19cec318da19547f231b1016 100644
|
| --- a/chrome/browser/resources/options2/browser_options_profile_list.js
|
| +++ b/chrome/browser/resources/options2/browser_options_profile_list.js
|
| @@ -35,9 +35,8 @@ cr.define('options.browser_options', function() {
|
| __proto__: DeletableItem.prototype,
|
|
|
| /**
|
| - * Get the filepath for this profile list item.
|
| - * @return the file path of this item.
|
| - */
|
| + * @type {string} the file path of this profile list item.
|
| + */
|
| get profilePath() {
|
| return this.profileInfo_.filePath;
|
| },
|
| @@ -62,7 +61,7 @@ cr.define('options.browser_options', function() {
|
| if (profileInfo.isCurrentProfile)
|
| displayName = localStrings.getStringF(
|
| 'profilesListItemCurrent',
|
| - profileInfo.name)
|
| + profileInfo.name);
|
| nameEl.textContent = displayName;
|
| },
|
| };
|
|
|