| 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 c74eba55fb2bcad193e0dce6d49251645d2eb9e6..5da06e0939461d21921c1540ad1d60750901c94f 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
|
| @@ -3,10 +3,10 @@
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
|
| <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared_menu.html">
|
| +<link rel="import" href="chrome://md-settings/passwords_and_forms_page/password_edit_dialog.html">
|
| <link rel="import" href="chrome://md-settings/settings_shared_css.html">
|
|
|
| <dom-module id="passwords-section">
|
| - <link rel="import" type="css" href="chrome://md-settings/site_settings_page/site_settings_page.css">
|
| <link rel="import" type="css" href="chrome://md-settings/passwords_and_forms_page/passwords_section.css">
|
| <template>
|
| <style include="settings-shared"></style>
|
| @@ -34,11 +34,13 @@
|
| </iron-list>
|
| <cr-shared-menu id="menu">
|
| <div id="menuEditPassword" class="list-item menu-item"
|
| - i18n-content="editPassword" hidden="[[!showPasswords]]"></div>
|
| + i18n-content="editPassword" on-tap="onMenuEditPasswordTap_"
|
| + hidden="[[!showPasswords]]"></div>
|
| <div id="menuRemovePassword" class="list-item menu-item"
|
| i18n-content="removePassword" on-tap="onMenuRemovePasswordTap_">
|
| </div>
|
| </cr-shared-menu>
|
| + <password-edit-dialog id="passwordEditDialog"></password-edit-dialog>
|
| </div>
|
| <div class="list-frame">
|
| <div class="secondary" i18n-content="passwordExceptionsHeading"></div>
|
|
|