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

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

Issue 2538303002: md-settings: Added settings for fingerprint unlock. (Closed)
Patch Set: Created 4 years 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
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
3 <link rel="import" href="chrome://resources/html/icon.html"> 3 <link rel="import" href="chrome://resources/html/icon.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 page-title="$i18n{syncPageTitle}" 288 page-title="$i18n{syncPageTitle}"
289 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> 289 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]">
290 <settings-sync-page></settings-sync-page> 290 <settings-sync-page></settings-sync-page>
291 </settings-subpage> 291 </settings-subpage>
292 </template> 292 </template>
293 <if expr="chromeos"> 293 <if expr="chromeos">
294 <template is="dom-if" if="[[quickUnlockEnabled_]]"> 294 <template is="dom-if" if="[[quickUnlockEnabled_]]">
295 <template is="dom-if" route-path="/lockScreen" no-search> 295 <template is="dom-if" route-path="/lockScreen" no-search>
296 <settings-subpage page-title="$i18n{lockScreenTitle}"> 296 <settings-subpage page-title="$i18n{lockScreenTitle}">
297 <settings-lock-screen 297 <settings-lock-screen
298 fingerprint-unlock-enabled="[[fingerprintUnlockEnabled_]]"
298 prefs="{{prefs}}"> 299 prefs="{{prefs}}">
299 </settings-lock-screen> 300 </settings-lock-screen>
300 </settings-subpage> 301 </settings-subpage>
301 </template> 302 </template>
302 </template> 303 </template>
303 <template is="dom-if" route-path="/accounts"> 304 <template is="dom-if" route-path="/accounts">
304 <settings-subpage 305 <settings-subpage
305 associated-control="[[$$('#manage-other-people-subpage-trigger')]]" 306 associated-control="[[$$('#manage-other-people-subpage-trigger')]]"
306 page-title="$i18n{usersPageTitle}"> 307 page-title="$i18n{usersPageTitle}">
307 <settings-users-page prefs="{{prefs}}"></settings-users-page> 308 <settings-users-page prefs="{{prefs}}"></settings-users-page>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 364
364 <if expr="chromeos"> 365 <if expr="chromeos">
365 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 366 <template is="dom-if" if="[[easyUnlockEnabled_]]">
366 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 367 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
367 </easy-unlock-turn-off-dialog> 368 </easy-unlock-turn-off-dialog>
368 </template> 369 </template>
369 </if> 370 </if>
370 </template> 371 </template>
371 <script src="people_page.js"></script> 372 <script src="people_page.js"></script>
372 </dom-module> 373 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698