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

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2715403005: MD Settings Fix associated-control for bluetooth, people, device subpage (Closed)
Patch Set: Restore dom-if Created 3 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/settings/device_page/device_page.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html">
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/icon.html"> 5 <link rel="import" href="chrome://resources/html/icon.html">
6 <link rel="import" href="chrome://resources/html/polymer.html"> 6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 </template> 327 </template>
328 <if expr="chromeos"> 328 <if expr="chromeos">
329 <template is="dom-if" if="[[quickUnlockEnabled_]]"> 329 <template is="dom-if" if="[[quickUnlockEnabled_]]">
330 <template is="dom-if" route-path="/lockScreen" no-search> 330 <template is="dom-if" route-path="/lockScreen" no-search>
331 <settings-subpage page-title="$i18n{lockScreenTitle}"> 331 <settings-subpage page-title="$i18n{lockScreenTitle}">
332 <settings-lock-screen 332 <settings-lock-screen
333 prefs="{{prefs}}"> 333 prefs="{{prefs}}">
334 </settings-lock-screen> 334 </settings-lock-screen>
335 </settings-subpage> 335 </settings-subpage>
336 </template> 336 </template>
337 </template> 337 <template is="dom-if" route-path="/lockScreen/fingerprint" no-search>
338 <template is="dom-if" route-path="/lockScreen/fingerprint"> 338 <settings-subpage page-title="$i18n{lockScreenFingerprintTitle}">
339 <settings-subpage page-title="$i18n{lockScreenFingerprintTitle}"> 339 <settings-fingerprint-list></settings-fingerprint-list>
340 <settings-fingerprint-list></settings-fingerprint-list> 340 </settings-subpage>
341 </settings-subpage> 341 </template>
342 </template> 342 </template>
343 <template is="dom-if" route-path="/accounts"> 343 <template is="dom-if" route-path="/accounts">
344 <settings-subpage 344 <settings-subpage
345 associated-control="[[$$('#manage-other-people-subpage-trigger')]]" 345 associated-control="[[$$('#manage-other-people-subpage-trigger')]]"
346 page-title="$i18n{usersPageTitle}"> 346 page-title="$i18n{usersPageTitle}">
347 <settings-users-page prefs="{{prefs}}"></settings-users-page> 347 <settings-users-page prefs="{{prefs}}"></settings-users-page>
348 </settings-subpage> 348 </settings-subpage>
349 </template> 349 </template>
350 <template is="dom-if" route-path="/changePicture"> 350 <template is="dom-if" route-path="/changePicture">
351 <settings-subpage 351 <settings-subpage
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 <if expr="chromeos"> 417 <if expr="chromeos">
418 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 418 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
419 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 419 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
420 on-close="onEasyUnlockTurnOffDialogClose_"> 420 on-close="onEasyUnlockTurnOffDialogClose_">
421 </easy-unlock-turn-off-dialog> 421 </easy-unlock-turn-off-dialog>
422 </template> 422 </template>
423 </if> 423 </if>
424 </template> 424 </template>
425 <script src="people_page.js"></script> 425 <script src="people_page.js"></script>
426 </dom-module> 426 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/device_page/device_page.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698