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

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

Issue 2150763002: Enable PIN configuration settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Fix tests Created 4 years, 5 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
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/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
8 <link rel="import" href="/controls/settings_checkbox.html"> 8 <link rel="import" href="/controls/settings_checkbox.html">
9 <link rel="import" href="/people_page/sync_page.html"> 9 <link rel="import" href="/people_page/sync_page.html">
10 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> 10 <link rel="import" href="/people_page/profile_info_browser_proxy.html">
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 156
157 <if expr="chromeos"> 157 <if expr="chromeos">
158 <div class="settings-box"> 158 <div class="settings-box">
159 <settings-checkbox pref="{{prefs.settings.enable_screen_lock}}" 159 <settings-checkbox pref="{{prefs.settings.enable_screen_lock}}"
160 label="$i18n{enableScreenlock}"> 160 label="$i18n{enableScreenlock}">
161 </settings-checkbox> 161 </settings-checkbox>
162 </div> 162 </div>
163 163
164 <!-- TODO(jdufault): Disable navigating to /quickUnlock/* if pin is 164 <!-- TODO(jdufault): Disable navigating to /quickUnlock/* if pin is
165 disabled. --> 165 disabled. -->
166 <template is="dom-if" if=[[quickUnlockAllowed_]]> 166 <template is="dom-if" if=[[quickUnlockEnabled_]]>
167 <div class="settings-box"> 167 <div class="settings-box">
168 <paper-button on-tap="onQuickUnlockTap_" class="primary-button"> 168 <paper-button on-tap="onQuickUnlockTap_" class="primary-button">
169 $i18n{quickUnlockTitle} 169 $i18n{quickUnlockTitle}
170 </paper-button> 170 </paper-button>
171 </div> 171 </div>
172 </template> 172 </template>
173 173
174 <template is="dom-if" if="[[easyUnlockAllowed_]]"> 174 <template is="dom-if" if="[[easyUnlockAllowed_]]">
175 <div class="settings-box"> 175 <div class="settings-box">
176 <div class="middle"> 176 <div class="middle">
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 310
311 <if expr="chromeos"> 311 <if expr="chromeos">
312 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 312 <template is="dom-if" if="[[easyUnlockEnabled_]]">
313 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 313 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
314 </easy-unlock-turn-off-dialog> 314 </easy-unlock-turn-off-dialog>
315 </template> 315 </template>
316 </if> 316 </if>
317 </template> 317 </template>
318 <script src="people_page.js"></script> 318 <script src="people_page.js"></script>
319 </dom-module> 319 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698