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

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

Issue 2210583002: MD Settings: Associate suppages with the controls that trigger them. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve conflicts with ToT Created 4 years, 4 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_and_forms_page.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html
index 05ed058a17e024aabc1b17b2bc5eb9594cf2a5f5..71425be3be63f0fff391bdbda60ef9dcf118755a 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html
@@ -42,14 +42,18 @@
</div>
</neon-animatable>
<template is="dom-if" name="manage-autofill">
- <settings-subpage page-title="$i18n{autofill}">
+ <settings-subpage
+ associated-control="[[$$('#autofillManagerButton')]]"
+ page-title="$i18n{autofill}">
<settings-autofill-section id="autofillSection"
addresses="[[addresses]]" credit-cards="[[creditCards]]">
</settings-autofill-section>
</settings-subpage>
</template>
<template is="dom-if" name="manage-passwords">
- <settings-subpage page-title="$i18n{passwords}"
+ <settings-subpage
+ associated-control="[[$$('#passwordManagerButton')]]"
+ page-title="$i18n{passwords}"
search-label="$i18n{searchPasswords}"
search-term="{{passwordFilter_}}">
<passwords-section saved-passwords="[[savedPasswords]]"

Powered by Google App Engine
This is Rietveld 408576698