Chromium Code Reviews| Index: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html |
| diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html |
| index 47d9d61565d0206582bc26b577fbd7fd584e7336..59736e0b01ba22bba4b2423ae0b615b967c7cf00 100644 |
| --- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html |
| +++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html |
| @@ -1,5 +1,6 @@ |
| <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.html"> |
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item-body.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.html"> |
| @@ -14,10 +15,15 @@ |
| <template> |
| <paper-item class="separator"> |
| <paper-item-body two-line> |
| - <div id="origin">[[item.origin]]</div> |
| - <div id="username"secondary>[[item.username]]</div> |
| + <div id="originUrl">[[item.loginPair.originUrl]]</div> |
| + <div id="username"secondary>[[item.loginPair.username]]</div> |
|
michaelpg
2016/01/27 04:23:43
fix id="username"secondary
hcarmona
2016/01/29 23:52:11
Done.
|
| </paper-item-body> |
| - <div id="password">[[item.password]]</div> |
| + <!--TODO(hcarmona): Update password so that it is editable. |
| + #password is type password and disabled in order to match UI.--> |
| + <paper-input id="password" type="password" disabled |
| + class="readonly-password" |
| + value="[[getEmptyPassword_(item.numCharactersInPassword)]]"> |
| + </paper-input> |
| </paper-item> |
| </template> |
| </iron-list> |