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

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

Issue 2224163002: Settings Router Refactor: Replace route.subpage usage with route.path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 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 d8b1a8674d3d28ee90d0c50b358fe7892034642f..a8872c5cca6106fec16b0f7eb85c948ff46a76c1 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
@@ -16,7 +16,7 @@
<template>
<style include="settings-shared"></style>
<settings-animated-pages id="pages" section="passwordsAndForms">
- <neon-animatable id="main">
+ <neon-animatable route-path="default">
<div class="settings-box first two-line" on-tap="onAutofillTap_"
id="autofillManagerButton"
actionable$="[[prefs.autofill.enabled.value]]">
@@ -40,7 +40,7 @@
</paper-toggle-button>
</div>
</neon-animatable>
- <template is="dom-if" name="manage-autofill">
+ <template is="dom-if" route-path="/autofill">
<settings-subpage
associated-control="[[$$('#autofillManagerButton')]]"
page-title="$i18n{autofill}">
@@ -49,7 +49,7 @@
</settings-autofill-section>
</settings-subpage>
</template>
- <template is="dom-if" name="manage-passwords">
+ <template is="dom-if" route-path="/managePasswords">
<settings-subpage
associated-control="[[$$('#passwordManagerButton')]]"
page-title="$i18n{passwords}"

Powered by Google App Engine
This is Rietveld 408576698