Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1503)

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html

Issue 1817123003: Implement the password edit UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698