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..75210b1be7559edd514df1980a69a3ce52c90e15 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,16 @@ |
| <template> |
| <paper-item class="separator"> |
| <paper-item-body two-line> |
| - <div id="origin">[[item.origin]]</div> |
| + <div id="shownUrl">[[item.shownUrl]]</div> |
| <div id="username"secondary>[[item.username]]</div> |
| </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="true" |
|
michaelpg
2016/01/16 07:12:48
just disabled, no need for ="true"
hcarmona
2016/01/20 02:32:50
Done.
|
| + class="readonly-password" value="[[item.password]]"> |
| + </paper-input> |
| </paper-item> |
| </template> |
| </iron-list> |