| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.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/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/paper-icon-button/paper
-icon-button-light.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> |
| 8 <link rel="import" href="../controls/settings_toggle_button.html"> | 8 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 9 <link rel="import" href="easy_unlock_browser_proxy.html"> | 9 <link rel="import" href="easy_unlock_browser_proxy.html"> |
| 10 <link rel="import" href="easy_unlock_turn_off_dialog.html"> | 10 <link rel="import" href="easy_unlock_turn_off_dialog.html"> |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 <div id="lockOptionsDiv"> | 61 <div id="lockOptionsDiv"> |
| 62 <div class="settings-box"> | 62 <div class="settings-box"> |
| 63 <h2>$i18n{lockScreenOptions}</h2> | 63 <h2>$i18n{lockScreenOptions}</h2> |
| 64 </div> | 64 </div> |
| 65 <div class="list-frame"> | 65 <div class="list-frame"> |
| 66 <paper-radio-group id="unlockType" | 66 <paper-radio-group id="unlockType" |
| 67 selected="{{selectedUnlockType}}"> | 67 selected="{{selectedUnlockType}}"> |
| 68 <paper-radio-button name="password" class="list-item underbar"> | 68 <paper-radio-button name="password" class="list-item underbar"> |
| 69 <div class="start"> | 69 <div class="start"> |
| 70 $i18n{lockScreenPasswordOnly} | 70 $i18n{lockScreenPasswordOnly} |
| 71 <div class="secondary"> | |
| 72 $i18n{lockScreenHighSecurity} | |
| 73 </div> | |
| 74 </div> | 71 </div> |
| 75 </paper-radio-button> | 72 </paper-radio-button> |
| 76 <paper-radio-button name="pin+password" | 73 <paper-radio-button name="pin+password" |
| 77 class="list-item underbar"> | 74 class="list-item underbar"> |
| 78 <div id="pinPasswordDiv" class="start"> | 75 <div id="pinPasswordDiv" class="start"> |
| 79 $i18n{lockScreenPinOrPassword} | 76 $i18n{lockScreenPinOrPassword} |
| 80 <div class="secondary"> | |
| 81 $i18n{lockScreenMediumSecurity} | |
| 82 </div> | |
| 83 </div> | 77 </div> |
| 84 <template is="dom-if" | 78 <template is="dom-if" |
| 85 if="[[showConfigurePinButton_(selectedUnlockType)]]"> | 79 if="[[showConfigurePinButton_(selectedUnlockType)]]"> |
| 86 <div class="separator"></div> | 80 <div class="separator"></div> |
| 87 <div id="pinPasswordSecondaryActionDiv" | 81 <div id="pinPasswordSecondaryActionDiv" |
| 88 class="secondary-action"> | 82 class="secondary-action"> |
| 89 <paper-button id="setupPinButton" class="secondary-button" | 83 <paper-button id="setupPinButton" class="secondary-button" |
| 90 on-tap="onConfigurePin_"> | 84 on-tap="onConfigurePin_"> |
| 91 [[getSetupPinText_(hasPin)]] | 85 [[getSetupPinText_(hasPin)]] |
| 92 </paper-button> | 86 </paper-button> |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 170 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 177 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 171 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 178 on-close="onEasyUnlockTurnOffDialogClose_"> | 172 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 179 </easy-unlock-turn-off-dialog> | 173 </easy-unlock-turn-off-dialog> |
| 180 </template> | 174 </template> |
| 181 </div> | 175 </div> |
| 182 </template> | 176 </template> |
| 183 | 177 |
| 184 <script src="lock_screen.js"></script> | 178 <script src="lock_screen.js"></script> |
| 185 </dom-module> | 179 </dom-module> |
| OLD | NEW |