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

Unified Diff: chrome/browser/resources/settings/people_page/people_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: fix 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/people_page/people_page.html
diff --git a/chrome/browser/resources/settings/people_page/people_page.html b/chrome/browser/resources/settings/people_page/people_page.html
index ac843ffc93607bf7c56cbbb4ffbebd8c7ad9bfe4..9ff0cc1749df59f059c41b03fa0d52fe33a4cc44 100644
--- a/chrome/browser/resources/settings/people_page/people_page.html
+++ b/chrome/browser/resources/settings/people_page/people_page.html
@@ -234,7 +234,7 @@
</div>
</template>
</neon-animatable>
- <template is="dom-if" name="sync">
+ <template is="dom-if" name="/syncSetup">
<settings-subpage
associated-control="[[$$('#customize-sync')]]"
page-title="$i18n{syncPageTitle}">
@@ -242,7 +242,7 @@
</settings-subpage>
</template>
<if expr="chromeos">
- <template is="dom-if" name="quick-unlock-authenticate" no-search>
+ <template is="dom-if" name="/quickUnlock/authenticate" no-search>
<settings-subpage page-title="$i18n{quickUnlockTitle}">
<settings-quick-unlock-authenticate
set-modes="{{quickUnlockSetModes}}"
@@ -250,27 +250,27 @@
</settings-quick-unlock-authenticate>
</settings-subpage>
</template>
- <template is="dom-if" name="quick-unlock-choose-method" no-search>
+ <template is="dom-if" name="/quickUnlock/chooseMethod" no-search>
<settings-subpage page-title="$i18n{quickUnlockTitle}">
<settings-quick-unlock-choose-method
set-modes="[[quickUnlockSetModes]]" prefs="{{prefs}}">
</settings-quick-unlock-choose-method>
</settings-subpage>
</template>
- <template is="dom-if" name="quick-unlock-setup-pin" no-search>
+ <template is="dom-if" name="/quickUnlock/setupPin" no-search>
<settings-subpage page-title="$i18n{quickUnlockTitle}">
<settings-quick-unlock-setup-pin set-modes="[[quickUnlockSetModes]]">
</settings-quick-unlock-setup-pin>
</settings-subpage>
</template>
- <template is="dom-if" name="users">
+ <template is="dom-if" name="/accounts">
<settings-subpage
associated-control="[[$$('#manage-other-people-subpage-trigger')]]"
page-title="$i18n{usersPageTitle}">
<settings-users-page prefs="{{prefs}}"></settings-users-page>
</settings-subpage>
</template>
- <template is="dom-if" name="changePicture">
+ <template is="dom-if" name="/changePicture">
<settings-subpage
associated-control="[[$$('#picture-subpage-trigger')]]"
page-title="$i18n{changePictureTitle}">
@@ -279,7 +279,7 @@
</template>
</if>
<if expr="not chromeos">
- <template is="dom-if" name="manageProfile">
+ <template is="dom-if" name="/manageProfile">
<settings-subpage
associated-control="[[$$('#picture-subpage-trigger')]]"
page-title="$i18n{editPerson}">

Powered by Google App Engine
This is Rietveld 408576698